diff options
author | Roland McGrath <roland@gnu.org> | 1999-09-19 18:53:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-09-19 18:53:26 +0000 |
commit | 3ccd16dc1f498ff860aa40b3cf3a41bb3700019f (patch) | |
tree | 903d7985692735cae36f9d44b9648d048ac3d6aa /configure.in | |
parent | a732b24f2ef440b15bfbae99079a03bbfacb0275 (diff) | |
download | hurd-3ccd16dc1f498ff860aa40b3cf3a41bb3700019f.tar.gz hurd-3ccd16dc1f498ff860aa40b3cf3a41bb3700019f.tar.bz2 hurd-3ccd16dc1f498ff860aa40b3cf3a41bb3700019f.zip |
1999-09-19 Roland McGrath <roland@baalperazim.frob.com>
* configure.in (enable_static_progs): Move sed translation of commas
to spaces out of case stmt, so it applies to default too.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 91420edc..9d65bb88 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION([$Id: configure.in,v 1.16 1999/09/13 04:34:38 roland Exp $]) +AC_REVISION([$Id: configure.in,v 1.17 1999/09/19 18:53:26 roland Exp $]) AC_PREREQ(2.12) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -38,9 +38,9 @@ changequote(',')[default_static]changequote([,])) case "$enable_static_progs" in 'no') enable_static_progs= ;; # we got --disable-static '') enable_static_progs=default_static ;; -*) enable_static_progs=`echo "$enable_static_progs" | - sed 's/[[, ]][[, ]]*/ /g'` ;; esac +# Convert comma/space-separated list into space-separated list. +enable_static_progs=`echo "$enable_static_progs" | sed 's/[[, ]][[, ]]*/ /g'` AC_SUBST(enable_static_progs) AC_PROG_INSTALL |