File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / autogen.sh
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jun 15 20:20:05 2014 UTC (10 years ago) by misho
Branches: lighttpd, MAIN
CVS tags: v1_4_41p8, v1_4_35p0, v1_4_35, HEAD
lighttpd 1.4.35

    1: #!/bin/sh
    2: # Run this to generate all the initial makefiles, etc.
    3: 
    4: set -e
    5: 
    6: if [ ! -f configure.ac -o ! -f COPYING ]; then
    7: 	echo "Doesn't look like you're in the source directory" >&2
    8: 	exit 1
    9: fi
   10: 
   11: # old autoreconf/aclocal versions fail hard if m4 doesn't exist
   12: mkdir -p m4
   13: autoreconf --force --install
   14: echo "Now type './configure ...' and 'make' to compile."

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>