2
0
forked from Ivasoft/openwrt

clean up automake/pkg-config handling, move separate host/package variable exports to templates, fix automake path for host builds

SVN-Revision: 15339
This commit is contained in:
Felix Fietkau
2009-04-22 22:05:55 +00:00
parent bb0448739c
commit 63129f9b4c
4 changed files with 24 additions and 20 deletions

View File

@@ -1,10 +1,2 @@
#!/usr/bin/env sh
if [ -d ${STAGING_DIR}/host/share/aclocal ]; then
aclocal_include_dirs="-I ${STAGING_DIR}/host/share/aclocal"
else
aclocal_include_dirs=
fi
if [ -d ${STAGING_DIR}/usr/share/aclocal ]; then
aclocal_include_dirs="$aclocal_include_dirs -I ${STAGING_DIR}/usr/share/aclocal"
fi
aclocal.real $aclocal_include_dirs $@
aclocal.real $ACLOCAL_INCLUDE $@