Re: [bakefile-devel] RPM spec for cvs snapshots
Robin Dunn <[email protected]> Fri, 18 Jul 2003 11:35:16 -0700
| Newsgroups | gmane.text.documancer.user |
|---|---|
| Message-ID | <[email protected]> |
Robin Dunn wrote: > Robin Dunn wrote: > >> Vaclav Slavik wrote: >> >>> I did something better, though: I set up SF cron job so that it runs >>> "make dist" and so the snapshot is real installable package now, with >>> configure, makefiles, man page and documentation. >> >> >> >> Yes, much better. Except there is no TODO file as referenced in the >> spec file. >> > > Also, the output/*-opts.empy files don't get installed. > Attached is a patch to fix the above. Perhaps bakefile should bake it's own Makefiles! ;-) -- Robin Dunn Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
bf.Makefile.in.patch
(text/plain, 943 B)
--- bakefile-0.1.1.20030718.orig/Makefile.in 2003-07-18 05:49:08.000000000 -0700
+++ bakefile-0.1.1.20030718/Makefile.in 2003-07-18 11:32:29.000000000 -0700
@@ -130,7 +130,12 @@
output/msvc6prj.py \
output/mingw.empy \
output/watcom.empy \
- output/_hdr_makefile.empy
+ output/_hdr_makefile.empy \
+ output/borland-opts.empy \
+ output/mingw-opts.empy \
+ output/msvc-opts.empy \
+ output/watcom-opts.empy \
+
rules_DATA = rules/autoconf.bkl \
@@ -225,7 +230,7 @@
$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
cd $(srcdir) && $(AUTOCONF)
-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
uninstall-info-am:
codePYTHON_INSTALL = $(INSTALL_DATA)