X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fautomake%2Ffiles%2Faclocal;h=60278e2ab089ffde394c908e2b49ec6cb784c470;hb=cc7c03a97022c627dac8e4aefb415081722119a5;hp=a586ccc61f31088ee35238532404bb0b2c180e6c;hpb=e57a3cb7f2d656644bc46d5bdd89a9199754c614;p=openwrt-10.03%2F.git diff --git a/tools/automake/files/aclocal b/tools/automake/files/aclocal index a586ccc61..60278e2ab 100755 --- a/tools/automake/files/aclocal +++ b/tools/automake/files/aclocal @@ -1,5 +1,10 @@ #!/usr/bin/env sh -aclocal.real \ - -I ${STAGING_DIR}/host/share/aclocal \ - -I ${STAGING_DIR}/usr/share/aclocal \ - $@ +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 $@