[Zope-CVS] CVS: Packages/WinBuilders/mk - spreadwrapper.mk:1.1.2.2

Tim Peters tim.one at comcast.net
Tue Feb 3 14:58:25 EST 2004


Update of /cvs-repository/Packages/WinBuilders/mk
In directory cvs.zope.org:/tmp/cvs-serv3576/mk

Modified Files:
      Tag: tim-zrs-branch
	spreadwrapper.mk 
Log Message:
Played along with that other pieces already liked to use underscores
instead of hyphens to separate words in synthesized text file names.

Moved the Spread wrapper's temp install directory from under tmp to
under src/tmp.  A natural way to delete this doesn't occur to me, and
I blow away the entire src/ and build/ trees anyway.


=== Packages/WinBuilders/mk/spreadwrapper.mk 1.1.2.1 => 1.1.2.2 ===
--- Packages/WinBuilders/mk/spreadwrapper.mk:1.1.2.1	Tue Feb  3 14:31:13 2004
+++ Packages/WinBuilders/mk/spreadwrapper.mk	Tue Feb  3 14:58:24 2004
@@ -9,6 +9,8 @@
 
 # XXX We should install the Spread wrapper's test suite.  Where?
 
+# XXX There's no natural way to clean up SPREADWRAPPER_TMPDIR here.
+
 SPREADWRAPPER_VERSION=1.4
 SPREADWRAPPER_DIR=SpreadModule-$(SPREADWRAPPER_VERSION)
 SPREADWRAPPER_ARCHIVE=$(SPREADWRAPPER_DIR).tgz
@@ -16,16 +18,16 @@
 
 REQUIRED_FILES=$(SPREADWRAPPER_REQUIRED_FILES)
 
-SPREADWRAPPER_TMPDIR=tmp/spreadwrapper
+SPREADWRAPPER_TMPDIR=src/tmp/spreadwrapper-install
 
 # Unpack the tarball into src/.
 build_spreadwrapper: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/spreadmodule.c
 
 # Copy the Windows stuff into the build tree.
 install_spreadwrapper: $(BUILD_DIR)/bin/spread.pyd \
-		       $(BUILD_DIR)/doc/spreadwrapper-doc.txt \
-		       $(BUILD_DIR)/doc/SPREADWRAPPER-LICENSE.txt \
-		       $(BUILD_DIR)/doc/SPREADWRAPPER-README.txt
+		       $(BUILD_DIR)/doc/spreadwrapper_doc.txt \
+		       $(BUILD_DIR)/doc/SPREADWRAPPER_LICENSE.txt \
+		       $(BUILD_DIR)/doc/SPREADWRAPPER_README.txt
 
 
 $(SRC_DIR)/$(SPREADWRAPPER_DIR)/spreadmodule.c: tmp/$(SPREADWRAPPER_ARCHIVE)
@@ -48,17 +50,17 @@
 	$(CP) $< $@
 	$(TOUCH) $@
 
-$(BUILD_DIR)/doc/spreadwrapper-doc.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/doc.txt
+$(BUILD_DIR)/doc/spreadwrapper_doc.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/doc.txt
 	$(CP) $< $@
 	unix2dos $@
 	$(TOUCH) $@
 
-$(BUILD_DIR)/doc/SPREADWRAPPER-LICENSE.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/LICENSE
+$(BUILD_DIR)/doc/SPREADWRAPPER_LICENSE.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/LICENSE
 	$(CP) $< $@
 	unix2dos $@
 	$(TOUCH) $@
 
-$(BUILD_DIR)/doc/SPREADWRAPPER-README.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/README
+$(BUILD_DIR)/doc/SPREADWRAPPER_README.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/README
 	$(CP) $< $@
 	unix2dos $@
 	$(TOUCH) $@




More information about the Zope-CVS mailing list