changeset 8923:ef81e9d0a532

(config_options): Save all arguments, not just some.
author Karl Heuer <kwzh@gnu.org>
date Mon, 19 Sep 1994 18:15:11 +0000
parents 67b7eb875a1e
children c64235231b19
files configure1.in
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure1.in	Mon Sep 19 17:46:42 1994 +0000
+++ b/configure1.in	Mon Sep 19 18:15:11 1994 +0000
@@ -147,7 +147,7 @@
 ### However, it also turns out that many shells cannot expand ${10} at all.
 ### So using an index variable doesn't work either.  It is possible to use
 ### some shell magic to make 'set x "$arguments"; shift' work portably.
-config_options=
+config_options="$*"
 while [ $# != 0 ]; do
   arg="$1"; shift
   case "${arg}" in
@@ -162,7 +162,6 @@
 	  valomitted=no
 	;;
         -*)
-	  config_options="${config_options} ${arg}"
           ## If FOO is a boolean argument, --FOO is equivalent to
           ## --FOO=yes.  Otherwise, the value comes from the next
           ## argument - see below.