diff options
Diffstat (limited to 'Utilities/cmcurl-7.19.0/reconf')
-rwxr-xr-x | Utilities/cmcurl-7.19.0/reconf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Utilities/cmcurl-7.19.0/reconf b/Utilities/cmcurl-7.19.0/reconf new file mode 100755 index 0000000..39405b0 --- /dev/null +++ b/Utilities/cmcurl-7.19.0/reconf @@ -0,0 +1,15 @@ +#!/bin/sh +# +# $Id$ +# +# re autoconf/automake shell script +# + +die(){ + echo "$@" ; exit +} + +aclocal -I . || die "The command 'aclocal -I .' failed" +autoheader || die "The command 'autoheader' failed" +automake || die "The command 'automake' failed" +autoconf || die "The command 'autoconf' failed" |