From 7fd7787c90c2ef0cfdeb5de50ea3aaec36a0ad4d Mon Sep 17 00:00:00 2001 From: Chris Lyttle Date: Mon, 2 Dec 2002 10:44:33 +0000 Subject: [PATCH] fix for failed rpm build git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7592 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 4 ++++ src/doc/Makefile.am | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e5babf68ec..d5e2c4aeff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-12-02 Chris Lyttle + + * src/doc/Makefile.am: fix for failure when building rpm + 2002-12-02 Chris Lyttle * NEWS: update to new version 1.7.4 diff --git a/src/doc/Makefile.am b/src/doc/Makefile.am index 0cfa2c0887..5d5be5745e 100644 --- a/src/doc/Makefile.am +++ b/src/doc/Makefile.am @@ -40,8 +40,10 @@ maintainer-clean-local: clean-local rm -rf html refman.pdf install-data-hook: - mkdir -p $(srcdir)/html #Workaround to allow libofx-cvs user to install without doc. - cp -rp $(srcdir)/html ${docdir} + $(mkinstalldirs) $(DESTDIR)$(docdir)/html +# mkdir -p $(srcdir)/html #Workaround to allow libofx-cvs user to install without doc. +# cp -rp $(srcdir)/html ${docdir} + cp -rp $(srcdir)/html $(DESTDIR)$(docdir)/html uninstall-hook: rm -rf ${docdir}/html