view autogen.sh @ 4990:786556485e91 HEAD

Comment out the configurable dir environments.
author Timo Sirainen <tss@iki.fi>
date Thu, 04 Jan 2007 15:22:01 +0200
parents 12d853120b45
children d410ee18ae93
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

autoreconf -i -f

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