root/current/host/trunk/langupdate/trunk/autogen.sh

Revision 4636, 361 bytes (checked in by codehelp, 5 months ago)

improve autogen.sh

  • Property svn:executable set to *
Line 
1#!/bin/sh -x
2
3# Exit this script if any command fails with non-zero exit status.
4set -e
5
6glib-gettextize -f
7intltoolize -f
8autoreconf -ifs
9for file in intltool-merge.in intltool-extract.in intltool-update.in; do
10        if [ -L $file ] || [ -f $file ]; then
11                rm -f $file
12        fi
13done
14echo "Now you can run ./configure --enable-error-on-warning --enable-compile-warnings"
Note: See TracBrowser for help on using the browser.