blob: 60278e2ab089ffde394c908e2b49ec6cb784c470 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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 $@
|