mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Use DESTDIR instead of INSTALL_ROOT_DIR
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24093 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fbb36c3b10
commit
e79db74f01
2 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-11-15 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
Notice: you should now use 'make DESTDIR=/tmp/xxx install' if you
|
||||
want to relocate all the installation into /tmp/xxx/
|
||||
* Makefile.postamble: Use DESTDIR instead of INSTALL_ROOT_DIR
|
||||
everywhere.
|
||||
|
||||
2006-11-15 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Documentation/GNUmakefile (GNUSTEP_INSTALLATION_DOMAIN): Use
|
||||
|
|
|
@ -38,13 +38,13 @@
|
|||
# Things to do after compiling
|
||||
# after-all::
|
||||
|
||||
$(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional:
|
||||
$(ECHO_CREATING)$(MKDIRS) $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional$(END_ECHO)
|
||||
$(DESTDIR)$(GNUSTEP_MAKEFILES)/Additional:
|
||||
$(ECHO_CREATING)$(MKDIRS) $(DESTDIR)$(GNUSTEP_MAKEFILES)/Additional$(END_ECHO)
|
||||
|
||||
# Things to do before installing
|
||||
before-install:: $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional
|
||||
before-install:: $(DESTDIR)$(GNUSTEP_MAKEFILES)/Additional
|
||||
$(ECHO_NOTHING)$(INSTALL_DATA) base.make \
|
||||
$(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional/base.make$(END_ECHO)
|
||||
$(DESTDIR)$(GNUSTEP_MAKEFILES)/Additional/base.make$(END_ECHO)
|
||||
|
||||
# Things to do after installing
|
||||
# after-install::
|
||||
|
@ -54,7 +54,7 @@ before-install:: $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional
|
|||
|
||||
# Things to do after uninstalling
|
||||
after-uninstall::
|
||||
$(ECHO_NOTHING)rm -f $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional/base.make$(END_ECHO)
|
||||
$(ECHO_NOTHING)rm -f $(DESTDIR)$(GNUSTEP_MAKEFILES)/Additional/base.make$(END_ECHO)
|
||||
|
||||
# Things to do before cleaning
|
||||
# before-clean::
|
||||
|
|
Loading…
Reference in a new issue