aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
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