diff options
author | Tomasz Kłoczko <kloczek@src.gnome.org> | 1999-09-23 03:07:16 +0800 |
---|---|---|
committer | Tomasz Kłoczko <kloczek@src.gnome.org> | 1999-09-23 03:07:16 +0800 |
commit | f269368c93a2e90753b286d43f6d34303c4c0929 (patch) | |
tree | c031f6b1fbf34049dc9c9eae0ec61deccd36c07d /calendar/doc | |
parent | 710c7909d8a65c2947823dfda18f567ea6d377d3 (diff) | |
download | gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.tar gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.tar.gz gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.tar.bz2 gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.tar.lz gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.tar.xz gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.tar.zst gsoc2013-evolution-f269368c93a2e90753b286d43f6d34303c4c0929.zip |
- fix which allow "make insytall DESTDIR=</install/prefix>".
svn path=/trunk/; revision=1250
Diffstat (limited to 'calendar/doc')
-rw-r--r-- | calendar/doc/C/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/doc/C/Makefile.am b/calendar/doc/C/Makefile.am index be6533d715..fbd3b63acf 100644 --- a/calendar/doc/C/Makefile.am +++ b/calendar/doc/C/Makefile.am @@ -27,13 +27,13 @@ dist-hook: -cp images/*.gif images/*.jpg $(distdir)/images install-data-local: gnomecal.html - $(mkinstalldirs) $(gnomecal_helpdir)/images + $(mkinstalldirs) $(DESTDIR)$(gnomecal_helpdir)/images -for file in $(srcdir)/gnomecal/*.html $(srcdir)/gnomecal/*.css; do \ basefile=`basename $$file`; \ - $(INSTALL_DATA) $(srcdir)/$$file $(gnomecal_helpdir)/$$basefile; \ + $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(gnomecal_helpdir)/$$basefile; \ done -for file in $(srcdir)/images/*.jpg $(srcdir)/images/*.gif; do \ - $(INSTALL_DATA) $(srcdir)/$$file $(gnomecal_helpdir)/images;\ + $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(gnomecal_helpdir)/images;\ done gnomecal.ps: gnomecal.sgml |