Annotation of embedaddon/lighttpd/autogen.sh, revision 1.1.1.2

1.1       misho       1: #!/bin/sh
                      2: # Run this to generate all the initial makefiles, etc.
                      3: 
                      4: set -e
                      5: 
1.1.1.2 ! misho       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
1.1       misho      10: 
1.1.1.2 ! misho      11: # old autoreconf/aclocal versions fail hard if m4 doesn't exist
        !            12: mkdir -p m4
        !            13: autoreconf --force --install
1.1       misho      14: echo "Now type './configure ...' and 'make' to compile."

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