aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-22 15:53:12 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-22 15:53:12 +0000
commitc54597db87140c0241c2551dcebecc6aec5d5cff (patch)
tree6399f3d2cd0ae8a42d14f8ba93fa34d7a58096da
parent[w3m-dev 03665] imlib2 support (on X11) (diff)
downloadw3m-c54597db87140c0241c2551dcebecc6aec5d5cff.tar.gz
w3m-c54597db87140c0241c2551dcebecc6aec5d5cff.zip
[w3m-dev 03671] Re: config.param is clear when configure -help
* configure: test -f config.param From: Yoshinobu Sakane <sakane@d4.bsd.nes.nec.co.jp>
-rw-r--r--ChangeLog7
-rwxr-xr-xconfigure6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d11d33..f35cedd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-23 Yoshinobu Sakane <sakane@d4.bsd.nes.nec.co.jp>
+
+ * [w3m-dev 03671] Re: config.param is clear when configure -help
+ * configure: test -f config.param
+
2003-01-22 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03665] imlib2 support (on X11)
@@ -6663,4 +6668,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
-$Id: ChangeLog,v 1.699 2003/01/21 15:38:55 ukai Exp $
+$Id: ChangeLog,v 1.700 2003/01/22 15:53:12 ukai Exp $
diff --git a/configure b/configure
index 98aaf9d..d35137a 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: configure,v 1.93 2003/01/21 15:38:57 ukai Exp $
+# $Id: configure,v 1.94 2003/01/22 15:53:12 ukai Exp $
# Configuration.
#
@@ -148,7 +148,9 @@ do
shift
done
-mv -f config.param config.param.bak
+if [ -f config.param ]; then
+ mv -f config.param config.param.bak
+fi
echo "# Configuration at $host" > config.param
if [ "x$IMLIB_CONFIG" = x ]; then