1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-20 15:45:21 +01:00
openwrt/tools/automake/files/aclocal
2008-10-09 12:55:08 +00:00

11 lines
341 B
Bash
Executable File

#!/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 $@