2008-10-08 21:50:03 +00:00
|
|
|
#!/usr/bin/env sh
|
2008-10-09 12:55:08 +00:00
|
|
|
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 $@
|