File: autogen.sh

package info (click to toggle)
langupdate 0.1.0
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,952 kB
  • ctags: 149
  • sloc: sh: 10,164; cpp: 1,130; makefile: 94
file content (14 lines) | stat: -rwxr-xr-x 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -x

# Exit this script if any command fails with non-zero exit status.
set -e

glib-gettextize -f
intltoolize -f
autoreconf -ifs
for file in intltool-merge.in intltool-extract.in intltool-update.in; do
	if [ -L $file ] || [ -f $file ]; then
		rm -f $file
	fi
done
echo "Now you can run ./configure --enable-error-on-warning --enable-compile-warnings"