[PD-cvs] SF.net SVN: pure-data:[10636] trunk/packages/Makefile

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Sun Jan 25 21:07:42 CET 2009


Revision: 10636
          http://pure-data.svn.sourceforge.net/pure-data/?rev=10636&view=rev
Author:   eighthave
Date:     2009-01-25 20:07:39 +0000 (Sun, 25 Jan 2009)

Log Message:
-----------
replaced second test with a || so that make doesn't catch the 'false' exit condition of the first test

Modified Paths:
--------------
    trunk/packages/Makefile

Modified: trunk/packages/Makefile
===================================================================
--- trunk/packages/Makefile	2009-01-25 18:06:50 UTC (rev 10635)
+++ trunk/packages/Makefile	2009-01-25 20:07:39 UTC (rev 10636)
@@ -246,9 +246,8 @@
 	install -p $(gem_src)/doc/*.* $(manualsdir)/$(GEM_NAME)
 	install -d $(manualsdir)/$(GEM_NAME)/manual
 # in Gem 0.92, $(gem_src)/manual moved to $(gem_src)/doc/manual
-	test -d $(gem_src)/manual && \
-		install -p $(gem_src)/manual/*.* $(manualsdir)/$(GEM_NAME)/manual
-	test -d $(gem_src)/doc/manual && \
+	(test -d $(gem_src)/manual && \
+		install -p $(gem_src)/manual/*.* $(manualsdir)/$(GEM_NAME)/manual) || \
 		install -p $(gem_src)/doc/manual/*.* $(manualsdir)/$(GEM_NAME)/manual
 	for dir in $(shell ls -1 $(gem_src)/examples | grep -v CVS); do \
 		echo "installing $$dir"; \


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list