summaryrefslogtreecommitdiff
path: root/config/general.m4
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-11-30 22:21:24 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-11-30 22:21:24 +0000
commit746330e2d072abcf28d36b29c41aecbe8e6d21ec (patch)
treeeba3508082db1b420218de36d405b4d9f771bc34 /config/general.m4
parent7ac9d45f49caaddc56d1aeb5038fddfb53ce86ac (diff)
downloadpostgresql-746330e2d072abcf28d36b29c41aecbe8e6d21ec.tar.gz
Better solution to the tr problem: use sed instead. Per Martijn and Andrew.
Diffstat (limited to 'config/general.m4')
-rw-r--r--config/general.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/config/general.m4 b/config/general.m4
index efa90a6f86..84495e2ee8 100644
--- a/config/general.m4
+++ b/config/general.m4
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/config/general.m4,v 1.8 2006/11/30 21:44:12 tgl Exp $
+# $PostgreSQL: pgsql/config/general.m4,v 1.9 2006/11/30 22:21:23 tgl Exp $
# This file defines new macros to process configure command line
# arguments, to replace the brain-dead AC_ARG_WITH and AC_ARG_ENABLE.
@@ -82,7 +82,7 @@ AC_DEFUN([PGAC_ARG_CHECK],
continue 2
fi
done
- pgac_txt=`echo $pgac_var | tr 'a_b' 'a-b'`
+ pgac_txt=`echo $pgac_var | sed 's/_/-/g'`
AC_MSG_WARN([option ignored: --$pgac_txt])
done])# PGAC_ARG_CHECK