OSDN Git Service

* aclocal.m4 (SIM_AC_OPTION_HARDWARE): Correct duplicate-
authorHans-Peter Nilsson <hp@axis.com>
Wed, 29 Mar 2006 03:40:25 +0000 (03:40 +0000)
committerHans-Peter Nilsson <hp@axis.com>
Wed, 29 Mar 2006 03:40:25 +0000 (03:40 +0000)
option-contents test.

sim/common/ChangeLog
sim/common/aclocal.m4

index 2db4937..dcadcd6 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-29  Hans-Peter Nilsson  <hp@axis.com>
+
+       * aclocal.m4 (SIM_AC_OPTION_HARDWARE): Correct duplicate-
+       option-contents test.
+
 2005-11-28  Mark Mitchell  <mark@codesourcery.com>
 
        * sim-signal.c (sim_signal_to_target): Fix typos.
index 056beba..d94b1e6 100644 (file)
@@ -593,9 +593,8 @@ else
   # remove duplicates
   sim_hw=""
   sim_hw_objs="\$(SIM_COMMON_HW_OBJS)"
-  for i in x $hardware ; do
-    case " $f " in
-      x) ;;
+  for i in $hardware ; do
+    case " $sim_hw " in
       *" $i "*) ;;
       *) sim_hw="$sim_hw $i" ; sim_hw_objs="$sim_hw_objs dv-$i.o";;
     esac