1 #!/bin/sh 2 3 # Install config.rpath which is needed for AM_ICONV macro 4 for dir in "$GETTEXT_DIR" /usr/share/gettext /usr/local/share/gettext; do 5 if test -f "$dir/config.rpath"; then 6 test -f config.rpath || echo "autogen.sh: installing './config.rpath'" 7 cp -f "$dir/config.rpath" . 8 break 9 fi 10 done 11 12 aclocal --force 13 autoconf --force 14 automake --add-missing --copy --force-missing