aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:04:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:04:45 +0300
commitdbd583bd2b8a6dd40c622875a4e197360cb5aba7 (patch)
treed9fb7b6595cb44fefb4e32d70af9ac6d057af14a /configure
parentb8c608200919aa3f7b3fef289a7bece2d2961412 (diff)
downloadegawk-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-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 2ff6dbff..3a39811c 100755
--- a/configure
+++ b/configure
@@ -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