mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 22:24:39 +02:00
pkg-config: disable potentially recursive compat lookups which break on systems with gnome devel tools installed (thx, lubek)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15026 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
92bd9e78ca
commit
bfdf3aa878
22
tools/pkg-config/patches/100-disable_compat_cmd.patch
Normal file
22
tools/pkg-config/patches/100-disable_compat_cmd.patch
Normal file
@ -0,0 +1,22 @@
|
||||
--- a/parse.c
|
||||
+++ b/parse.c
|
||||
@@ -1187,15 +1187,12 @@ try_command (const char *command)
|
||||
Package *
|
||||
get_compat_package (const char *name)
|
||||
{
|
||||
-#ifdef G_OS_WIN32
|
||||
- /* There has never been any of these legacy *-config scripts on
|
||||
- * Windows as far as I know. No use trying to execute them, will
|
||||
- * only confuse users to see the "blabla is not recognized as an
|
||||
- * internal or external command, operable program or batch file"
|
||||
- * messages.
|
||||
+ /*
|
||||
+ * We don't need this compatibility stuff on a system
|
||||
+ * that is free of legacy stuff
|
||||
*/
|
||||
return NULL;
|
||||
-#else
|
||||
+#if 0
|
||||
|
||||
Package *pkg;
|
||||
|
Loading…
Reference in New Issue
Block a user