File: autogen.sh

package info (click to toggle)
gtklp 1.2.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 9,776 kB
  • ctags: 1,799
  • sloc: ansic: 18,461; sh: 10,370; makefile: 466; yacc: 288; sed: 16
file content (21 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

LANG=
LC_ALL=C
#LC_ALL=UTF-8
export LANG LC_ALL

echo Running libtoolize...
libtoolize --copy --force
echo Running gettextize...
gettextize --copy -f --intl
echo Running aclocal...
aclocal -I m4 
echo Running autoheader...
autoheader --force
echo Running autoconf...
autoconf --force 
echo Running automake...
automake --add-missing --copy --include-deps --foreign --force-missing
echo "DON'T EVER CHANGE gettext.h"
echo Now run configure, make, make install.