[Zope-CVS] CVS: Packages/zpkgtools/zpkgtools/appsupport - Makefile.in.in:1.6

Fred L. Drake, Jr. fred at zope.com
Fri Jun 11 00:14:59 EDT 2004


Update of /cvs-repository/Packages/zpkgtools/zpkgtools/appsupport
In directory cvs.zope.org:/tmp/cvs-serv12468

Modified Files:
	Makefile.in.in 
Log Message:
"make install" can tell distutils to ignore the build step, since it
runs that separately using a make dependency


=== Packages/zpkgtools/zpkgtools/appsupport/Makefile.in.in 1.5 => 1.6 ===
--- Packages/zpkgtools/zpkgtools/appsupport/Makefile.in.in:1.5	Mon May 24 11:18:22 2004
+++ Packages/zpkgtools/zpkgtools/appsupport/Makefile.in.in	Fri Jun 11 00:14:57 2004
@@ -17,8 +17,11 @@
 build:
 	$(PYTHON) install.py -q build
 
+# The "install" target skips the distutils build step since that's
+# handled via the dependency on the build target.
+#
 install: build
-	$(PYTHON) install.py -q install --home "$(prefix)"
+	$(PYTHON) install.py -q install --skip-build --home "$(prefix)"
 
 check test: build
 	$(PYTHON) test.py $(TESTOPTS)




More information about the Zope-CVS mailing list