[toolchain] add support for gcc v4.3.1 & v4.3.2 (closes: #3479), thanks to Luigi...
[openwrt.git] / tools / automake / files / aclocal
1 #!/usr/bin/env sh
2 if [ -d ${STAGING_DIR}/host/share/aclocal ]; then
3 aclocal_include_dirs="-I ${STAGING_DIR}/host/share/aclocal"
4 else
5 aclocal_include_dirs=
6 fi
7 if [ -d ${STAGING_DIR}/usr/share/aclocal ]; then
8 aclocal_include_dirs="$aclocal_include_dirs -I ${STAGING_DIR}/usr/share/aclocal"
9 fi
10 aclocal.real $aclocal_include_dirs $@
This page took 0.038909 seconds and 5 git commands to generate.