You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
341 B
10 lines
341 B
#!/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 $@
|
|
|