GNOME Bugzilla – Bug 753502
NetworkManager-1.0.4: Do not hardcode pkg-config
Last modified: 2015-08-11 11:47:15 UTC
Created attachment 309054 [details] [review] 0001-configure.ac-Do-not-hardcode-pkg-config.patch configure.ac already has various pkg-config calls via $PKG_CONFIG, two however are hard-coded and cause issues when compiling with prefixed commands in e.g. cross environments: GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0` GLIB_MKENUMS=`pkg-config --variable=glib_mkenums glib-2.0` Attached patch replaces the two offending/remaining pkg-config calls with $PKG_CONFIG.
merged master: http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=a6e3a60844aa9e2c4d24afe5b7945e0a6292dd04 nm-1-0: http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=192ad96b1b9e76a219520a76a1a6962a3b12dc90 nm-0-9-10: http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=eb8c2b082a43b59e13be71a87c2768978dd109f5 Thank you for the patch