aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kłoczko <kloczek@src.gnome.org>1999-05-03 14:51:08 +0800
committerTomasz Kłoczko <kloczek@src.gnome.org>1999-05-03 14:51:08 +0800
commitf38f1deb654ffe547ef18994ad9435fd1aa5cff7 (patch)
treea804360e995560e9d160d466ffc6b54c6267a0a5
parentb4b72da407b93bebf83dbd15e974e31df563b5f3 (diff)
downloadgsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.tar
gsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.tar.gz
gsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.tar.bz2
gsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.tar.lz
gsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.tar.xz
gsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.tar.zst
gsoc2013-evolution-f38f1deb654ffe547ef18994ad9435fd1aa5cff7.zip
- fix: allow use $DESTDIR on "make install DESTDIR=</install/prefix>".
- fix: allow use $DESTDIR on "make install DESTDIR=</install/prefix>". svn path=/trunk/; revision=888
-rw-r--r--calendar/Makefile.am8
-rw-r--r--calendar/gui/Makefile.am8
2 files changed, 8 insertions, 8 deletions
diff --git a/calendar/Makefile.am b/calendar/Makefile.am
index 8042e05d94..5bbf788c8e 100644
--- a/calendar/Makefile.am
+++ b/calendar/Makefile.am
@@ -78,7 +78,7 @@ Productivitydir = $(datadir)/gnome/apps/Applications
Productivity_DATA = gncal.desktop
install-data-local:
- $(mkinstalldirs) $(help_base)/C
- $(INSTALL_DATA) $(srcdir)/topic.dat $(help_base)/C/topic.dat
- $(INSTALL_DATA) $(srcdir)/gnome-cal.html $(help_base)/C/gnome-cal.html
- cd $(help_base)/C; rm -f index.html ; $(LN_S) gnome-cal.html index.html
+ $(mkinstalldirs) $(DESTDIR)$(help_base)/C
+ $(INSTALL_DATA) $(srcdir)/topic.dat $(DESTDIR)$(help_base)/C/topic.dat
+ $(INSTALL_DATA) $(srcdir)/gnome-cal.html $(DESTDIR)$(help_base)/C/gnome-cal.html
+ cd $(DESTDIR)$(help_base)/C; rm -f index.html ; $(LN_S) gnome-cal.html index.html
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am
index 8042e05d94..5bbf788c8e 100644
--- a/calendar/gui/Makefile.am
+++ b/calendar/gui/Makefile.am
@@ -78,7 +78,7 @@ Productivitydir = $(datadir)/gnome/apps/Applications
Productivity_DATA = gncal.desktop
install-data-local:
- $(mkinstalldirs) $(help_base)/C
- $(INSTALL_DATA) $(srcdir)/topic.dat $(help_base)/C/topic.dat
- $(INSTALL_DATA) $(srcdir)/gnome-cal.html $(help_base)/C/gnome-cal.html
- cd $(help_base)/C; rm -f index.html ; $(LN_S) gnome-cal.html index.html
+ $(mkinstalldirs) $(DESTDIR)$(help_base)/C
+ $(INSTALL_DATA) $(srcdir)/topic.dat $(DESTDIR)$(help_base)/C/topic.dat
+ $(INSTALL_DATA) $(srcdir)/gnome-cal.html $(DESTDIR)$(help_base)/C/gnome-cal.html
+ cd $(DESTDIR)$(help_base)/C; rm -f index.html ; $(LN_S) gnome-cal.html index.html