view autogen.sh @ 5057:d86ee13688d5 HEAD

Removed -f option from autoreconf, since it overwrites our INSTALL file.
author Timo Sirainen <tss@iki.fi>
date Mon, 22 Jan 2007 18:29:20 +0200
parents d410ee18ae93
children 9d36800df1ae
line wrap: on
line source

#!/bin/sh

# If you've non-standard directories, set these
#ACLOCAL_DIR=
#GETTEXT_DIR=

if test "$ACLOCAL_DIR" != ""; then
  ACLOCAL="aclocal -I $ACLOCAL_DIR"
  export ACLOCAL
fi

for dir in $GETTEXT_DIR /usr/share/gettext; do
  if test -f $dir/config.rpath; then
    /bin/cp -f $dir/config.rpath .
    break
  fi
done

autoreconf -i