mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
e82eda5bef
If we tell bash to used the installed readline library, it defaults to adding -L/lib for the readline and history library prefixes. This prepends the local systems search path to the toolchain search path and makes bash build break on some systems. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
13 lines
516 B
Diff
13 lines
516 B
Diff
diff --git a/Makefile.in.old b/Makefile.in
|
|
index c7b62bc..43859b1 100644
|
|
--- a/Makefile.in.old
|
|
+++ b/Makefile.in
|
|
@@ -416,7 +416,7 @@ LIBRARIES = $(GLOB_LIB) $(SHLIB_LIB) $(READLINE_LIB) $(HISTORY_LIB) $(TERMCAP_LI
|
|
LIBDEP = $(GLOB_DEP) $(SHLIB_DEP) $(INTL_DEP) $(READLINE_DEP) $(HISTORY_DEP) $(TERMCAP_DEP) \
|
|
$(TILDE_DEP) $(MALLOC_DEP)
|
|
|
|
-LIBRARY_LDFLAGS = $(READLINE_LDFLAGS) $(HISTORY_LDFLAGS) $(GLOB_LDFLAGS) \
|
|
+LIBRARY_LDFLAGS = $(GLOB_LDFLAGS) \
|
|
$(TILDE_LDFLAGS) $(MALLOC_LDFLAGS) $(SHLIB_LDFLAGS)
|
|
|
|
#
|