mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 17:55:55 +02:00
Check for existence of target aclocal folder before including them.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12934 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
78ba806154
commit
3286421e36
@ -1,5 +1,10 @@
|
|||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
aclocal.real \
|
if [ -d ${STAGING_DIR}/host/share/aclocal ]; then
|
||||||
-I ${STAGING_DIR}/host/share/aclocal \
|
aclocal_include_dirs="-I ${STAGING_DIR}/host/share/aclocal"
|
||||||
-I ${STAGING_DIR}/usr/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 $@
|
||||||
|
Loading…
Reference in New Issue
Block a user