summaryrefslogtreecommitdiffstats
path: root/package/Makefile.in
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2011-05-03 15:23:40 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-05-03 15:23:40 +0200
commit6246704008ef219257f30a824903855d0e00cffb (patch)
tree2394c6400b86a38f97f4efce61fc3303a36fc723 /package/Makefile.in
parenta2e724a05b5c9a8ef8dadfb2154d1fd996f16fef (diff)
downloadbuildroot-novena-6246704008ef219257f30a824903855d0e00cffb.tar.gz
buildroot-novena-6246704008ef219257f30a824903855d0e00cffb.zip
package/Makefile.in: ensure libtool doesn't search host dirs for libraries
Commit 7e3e8ec040b (CFLAGS/LDFLAGS: don't add -I / -L args for STAGING_DIR) exposed a lingering libtool problem. Unless instructed otherwise (using -L) libtool will search its built in system path for libraries, and use those instead if found. The default search path is '/usr/lib, /lib, /usr/local/lib', which is no good for cross compilation. Fix it by setting the system search path to the empty string, effectively disabling this feature. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/Makefile.in')
-rw-r--r--package/Makefile.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/Makefile.in b/package/Makefile.in
index 7811d51d4..391777ead 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -284,6 +284,7 @@ TARGET_CONFIGURE_ARGS= \
ac_cv_func_malloc_0_nonnull=yes \
ac_cv_func_calloc_0_nonnull=yes \
ac_cv_func_realloc_0_nonnull=yes \
+ lt_cv_sys_lib_search_path_spec="" \
$(BR2_AC_CV_C_BIGENDIAN)
#######################################################################