Changeset 9123 for branches/pep/autogen.sh
- Timestamp:
- 12/12/07 09:44:46 (12 months ago)
- Files:
-
- 1 modified
-
branches/pep/autogen.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pep/autogen.sh
r7248 r9123 1 1 #!/usr/bin/env bash 2 AM_ARGS="--add-missing --gnu --copy" 3 CONF_ARGS="" 4 if test x`uname -s 2>/dev/null` = 'xDarwin';then 5 . /Library/Frameworks/GTK+.framework/Versions/Current/env 6 AM_ARGS="${AM_ARGS} --ignore-deps" 7 CONF_ARGS="${CONF_ARGS} --disable-idle --without-x" 8 fi 9 2 10 echo "[encoding: UTF-8]" > po/POTFILES.in \ 3 11 && ls -1 -U data/gajim.desktop.in.in data/glade/*.glade \ … … 9 17 exit 1 10 18 fi 11 set -x 19 12 20 intltoolize --force --automake \ 13 21 && aclocal -I ./m4 \ … … 15 23 && autoheader \ 16 24 && autoconf \ 17 && automake --add-missing --gnu --copy\18 && ./configure $ @25 && automake ${AM_ARGS} \ 26 && ./configure ${CONF_ARGS} $@
