[llvm-commits] [llvm] r102781 - /llvm/trunk/Makefile.rules

Daniel Dunbar daniel at zuster.org
Fri Apr 30 15:00:17 PDT 2010


Author: ddunbar
Date: Fri Apr 30 17:00:17 2010
New Revision: 102781

URL: http://llvm.org/viewvc/llvm-project?rev=102781&view=rev
Log:
Don't use 'else ifdef', I guess this is a 3.81 feature?

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=102781&r1=102780&r2=102781&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Fri Apr 30 17:00:17 2010
@@ -1234,7 +1234,8 @@
 	$(Echo) Install circumvented with NO_INSTALL
 uninstall-local::
 	$(Echo) Uninstall circumvented with NO_INSTALL
-else ifdef NO_INSTALL_ARCHIVES
+else
+ifdef NO_INSTALL_ARCHIVES
 install-local::
 	$(Echo) Install circumvented with NO_INSTALL
 uninstall-local::
@@ -1254,6 +1255,7 @@
 	-$(Verb) $(RM) -f $(DestArchiveLib)
 endif
 endif
+endif
 
 # endif LIBRARYNAME
 endif





More information about the llvm-commits mailing list