I'm afraid the ecb hackery has left ecb in a state where make bindist
generates an error:
ls -1 pkginfo/MANIFEST.ecb > pkginfo/MANIFEST.ecb)
cp -af /opt/build/xemacs-packages-2003-02-10/xemacs-packages/ecb/ecb*.html
/home/acs/tmp/staging/html
cp: cannot stat
`/opt/build/xemacs-packages-2003-02-10/xemacs-packages/ecb/ecb*.html': No such file or
directory
make: *** [binkit-with-html] Error 1
The problem, of course, is that when you run 'make bindist' for the
/first/ time, there is no ecb.html file to match the wildcard specified
by:
HTML_FILES = $(PACKAGE)*.html
The following patch fixes this problem, but I don't know if this is
really the Right Way to fix this.
--- Makefile~ 2003-02-09 12:44:37.000000000 -0500
+++ Makefile 2003-02-10 20:46:35.000000000 -0500
@@ -34,7 +34,7 @@
EXTRA_SOURCES = HISTORY README RELEASE_NOTES
INFO_FILES = $(PACKAGE).info*
-HTML_FILES = $(PACKAGE)*.html
+HTML_FILES = $(PACKAGE).html
HTML_DEP = $(PACKAGE).html
TEXI_FILES = $(PACKAGE).texi
- Vin