diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:04:45 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:04:45 +0300 |
commit | dbd583bd2b8a6dd40c622875a4e197360cb5aba7 (patch) | |
tree | d9fb7b6595cb44fefb4e32d70af9ac6d057af14a /configure | |
parent | b8c608200919aa3f7b3fef289a7bece2d2961412 (diff) | |
download | egawk-dbd583bd2b8a6dd40c622875a4e197360cb5aba7.tar.gz egawk-dbd583bd2b8a6dd40c622875a4e197360cb5aba7.tar.bz2 egawk-dbd583bd2b8a6dd40c622875a4e197360cb5aba7.zip |
Move to 2.13.3 (from 2.13.tar.gz - sigh).
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -11,7 +11,7 @@ case "$#" in esac if [ -f config/$1 ]; then - sh ./mungeconf config/$1 config.h-dist >config.h + sh ./mungeconf config/$1 config.h.in >config.h # echo #echo lines to stdout sed -n '/^#echo /s///p' config/$1 @@ -19,14 +19,14 @@ if [ -f config/$1 ]; then sed -n '/^MAKE_.*/s//s,^##&## ,,/p' config/$1 >sedscr if [ -s sedscr ] then - sed -f sedscr Makefile-dist >Makefile + sed -f sedscr Makefile.in >Makefile else - cp Makefile-dist Makefile + cp Makefile.in Makefile fi rm -f sedscr else echo "\`$1' is not a known configuration." echo "Either construct one based on the examples in the config directory," - echo "or copy config.h-dist to config.h and edit it." + echo "or copy config.h.in to config.h and edit it." exit 1 fi |