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.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20499 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins
2011-03-28 15:58:00 +00:00
parent ffa95c6c03
commit 95358ed1d9

View File

@@ -35,7 +35,8 @@ GUI_SUBDIRS = \
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 = \