]> git.eshelyaron.com Git - emacs.git/commitdiff
(config_options): Save all arguments, not just some.
authorKarl Heuer <kwzh@gnu.org>
Mon, 19 Sep 1994 18:15:11 +0000 (18:15 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 19 Sep 1994 18:15:11 +0000 (18:15 +0000)
configure1.in

index c11f88ac645ee54e4bb8474d442187d025af7110..1494a91fa433d5343e77eb034d8f2981227d7b01 100755 (executable)
@@ -147,7 +147,7 @@ done
 ### 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 @@ while [ $# != 0 ]; do
          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.