Codebase list dosfstools / 58decffc-38ef-450f-910e-1c1a437e6d7a/main autogen.sh
58decffc-38ef-450f-910e-1c1a437e6d7a/main

Tree @58decffc-38ef-450f-910e-1c1a437e6d7a/main (Download .tar.gz)

autogen.sh @58decffc-38ef-450f-910e-1c1a437e6d7a/mainraw · history · blame

#!/bin/sh

# Install config.rpath which is needed for AM_ICONV macro
for dir in "$GETTEXT_DIR" /usr/share/gettext /usr/local/share/gettext; do
  if test -f "$dir/config.rpath"; then
    test -f config.rpath || echo "autogen.sh: installing './config.rpath'"
    cp -f "$dir/config.rpath" .
    break
  fi
done

aclocal --force
autoconf --force
automake --add-missing --copy --force-missing