Check for existence of target aclocal folder before including them.

SVN-Revision: 12934
lede-17.01
Lars-Peter Clausen 2008-10-09 12:55:08 +00:00
parent 34837ea2dd
commit 6b4e3e7609
1 changed files with 9 additions and 4 deletions

View File

@ -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 $@