diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-27 13:07:04 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:32 -0400 |
commit | 902b004de76d1a596dc2c277193aa0cd7c2b173f (patch) | |
tree | 346c80a0b441026bd058fc88530dce8af6f1eca7 | |
parent | 9369beb85b3d65eabfce93b0f0ed59da824b5236 (diff) | |
download | fork-ledger-902b004de76d1a596dc2c277193aa0cd7c2b173f.tar.gz fork-ledger-902b004de76d1a596dc2c277193aa0cd7c2b173f.tar.bz2 fork-ledger-902b004de76d1a596dc2c277193aa0cd7c2b173f.zip |
Changes to make 'make dist' work.
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index f01256ca..1bfb8025 100644 --- a/Makefile.am +++ b/Makefile.am @@ -123,6 +123,7 @@ pkginclude_HEADERS = \ qif.h \ quotes.h \ reconcile.h \ + register.h \ report.h \ session.h \ system.hh \ @@ -152,7 +153,7 @@ info_TEXINFOS = ledger.texi ###################################################################### -lisp_LISP = ledger.el timeclock.el +dist_lisp_LISP = ledger.el timeclock.el ###################################################################### @@ -216,7 +217,7 @@ UnitTests_CPPFLAGS = -I$(srcdir)/tests $(libledger_la_CPPFLAGS) UnitTests_LDFLAGS = $(LIBADD_DL) UnitTests_LDADD = $(lib_LTLIBRARIES) gdtoa/libgdtoa.la -lcppunit -PyUnitTests_SOURCES = PyUnitTest.py +PyUnitTests_SOURCES = PyUnitTests.py PyUnitTests: PyUnitTests.py cat $(srcdir)/PyUnitTests.py | sed "s/%srcdir%/$(ESC_srcdir)/g" \ diff --git a/configure.in b/configure.in index 87be65bd..c65ec096 100644 --- a/configure.in +++ b/configure.in @@ -322,7 +322,7 @@ AC_ARG_ENABLE(pch, yes) pch=true ;; no) pch=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-pch) ;; - esac],[pch=true]) + esac],[pch=false]) AM_CONDITIONAL(USE_PCH, test x$pch = xtrue) |