Sha256: d897e4f550c55e039141e36c4f0b4d703d098cb7752f2d99d376bb5d4d8a269e

Contents?: true

Size: 891 Bytes

Versions: 3

Compression:

Stored size: 891 Bytes

Contents

#!/bin/sh

# This script tries to follow the "GNU way" w.r.t. the autobits.
# This does of course generate a number of irritating files.
# Try to get over it (I am getting there myself).

# This should generate any missing crud, and then run autoconf which should turn
# configure.in into a "./configure" script and "Makefile.am" into a
# "Makefile.in". Then running "./configure" should turn "Makefile.in" into
# "Makefile" and should generate the config.h containing your systems various
# settings. I know ... what a hassle ...

# Also, sometimes these autobits things generate bizarre output (looking like
# errors). So I direct everything "elsewhere" ...

(aclocal
autoheader
libtoolize --copy --force
automake --foreign --add-missing --copy
autoconf) 1> /dev/null 2>&1

# Move the "no-autotools" Makefile out of the way
if test ! -f Makefile.plain; then
	mv Makefile Makefile.plain
fi

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rhodes-1.4.2 lib/extensions/openssl/ext/openssl/demos/tunala/autogunk.sh
rhodes-1.4.1 lib/extensions/openssl/ext/openssl/demos/tunala/autogunk.sh
rhodes-1.4.0 lib/extensions/openssl/ext/openssl/demos/tunala/autogunk.sh