Author: ablack
Date: Wed Dec 13 08:27:41 2006
New Revision: 486713

URL: http://svn.apache.org/viewvc?view=rev&rev=486713
Log:
2006-12-12  Andrew Black  <[EMAIL PROTECTED]>

        * makefile.rules (run runall run_all): Remove unneeded if-then-else-fi 
        construct, fixing bug introduced in 
        http://svn.apache.org/viewvc?view=rev&rev=485859 in the process.


Modified:
    incubator/stdcxx/trunk/etc/config/makefile.rules

Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?view=diff&rev=486713&r1=486712&r2=486713
==============================================================================
--- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
+++ incubator/stdcxx/trunk/etc/config/makefile.rules Wed Dec 13 08:27:41 2006
@@ -113,11 +113,7 @@
         PATH=$$PATH:.;                                                    \
         TOPDIR=$(TOPDIR);                                                 \
         export LD_LIBRARY_PATH PATH TOPDIR;                               \
-        if [ -z "$(RUNTARGET)" ];  then                                   \
-            ./run $(RUNFLAGS)                                             \
-        else                                                              \
-            ./run $(RUNFLAGS) $(RUNTARGET);                               \
-        fi ;                                                              \
+        ./run $(RUNFLAGS) $(RUNTARGET);                                   \
         exit 0)
 
 # include the automatically generated dependencies unless "clean"


Reply via email to