r20499 - gnucash/trunk/src - Several people reporting that swig-runtime.h wasn't being created.
Derek Atkins
warlord at code.gnucash.org
Mon Mar 28 11:58:00 EDT 2011
Author: warlord
Date: 2011-03-28 11:58:00 -0400 (Mon, 28 Mar 2011)
New Revision: 20499
Trac: http://svn.gnucash.org/trac/changeset/20499
Modified:
gnucash/trunk/src/Makefile.am
Log:
Several people reporting that swig-runtime.h wasn't being created.
That's because '.' wasn't in the front of the SUBDIRS, so the Makefile
wasn't building the local targets.
Modified: gnucash/trunk/src/Makefile.am
===================================================================
--- gnucash/trunk/src/Makefile.am 2011-03-27 19:32:56 UTC (rev 20498)
+++ gnucash/trunk/src/Makefile.am 2011-03-28 15:58:00 UTC (rev 20499)
@@ -35,7 +35,8 @@
plugins \
bin
-SUBDIRS = $(NONGUI_SUBDIRS) $(ALMOST_NONGUI_SUBDIRS) $(GUI_SUBDIRS)
+# Need to include '.' in order to build swig-runtime.h
+SUBDIRS = . $(NONGUI_SUBDIRS) $(ALMOST_NONGUI_SUBDIRS) $(GUI_SUBDIRS)
DIST_SUBDIRS = $(SUBDIRS) python
noinst_HEADERS = \
More information about the gnucash-changes
mailing list