Changeset 7bebb42 in mod_gnutls for autogen.sh
- Timestamp:
- Nov 28, 2007, 1:29:21 PM (12 years ago)
- Branches:
- debian/master, debian/stretch-backports, jessie-backports, master, msva, upstream
- Children:
- 3e6bc31
- Parents:
- 8e33f2d
- git-author:
- Nikos Mavrogiannopoulos <nmav@…> (11/28/07 13:29:21)
- git-committer:
- Nokis Mavrogiannopoulos <nmav@…> (11/28/07 13:29:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
autogen.sh
r8e33f2d r7bebb42 1 1 #!/bin/sh 2 m4/buildconf.py \3 --libtoolize \4 --aclocal \5 --automake \6 --autoconf \7 --autoheader8 2 9 rm -rf autom4te.cache 3 if [ -z $ACLOCAL ]; then 4 ACLOCAL=aclocal 5 fi 6 if [ -z $AUTOCONF ]; then 7 AUTOCONF=autoconf 8 fi 9 if [ -z $AUTOHEADER ]; then 10 AUTOHEADER=autoheader 11 fi 12 if [ -z $AUTORECONF ]; then 13 AUTORECONF=autoreconf 14 fi 15 16 #rm -rf autom4te.cache 17 $AUTORECONF -f -i 18 #touch stamp-h.in 19 20 for x in providers/*; do 21 if [ -e $x/autogen.sh ]; then 22 echo Generating Config files in $x 23 (cd $x; ./autogen.sh $*) 24 fi 25 done
Note: See TracChangeset
for help on using the changeset viewer.