aclocal 341 B

12345678910
  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 $@