Removed two obsolete variables after 4 years of deprecation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32573 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2011-03-14 10:50:08 +00:00
parent 42ba690826
commit 94c20ec9e8
5 changed files with 23 additions and 16 deletions

View file

@ -1,3 +1,12 @@
2011-03-14 Nicola Pero <nicola.pero@meta-innovation.com>
* Instance/gswapp.make (GNUSTEP_GSWAPPS): Variable removed.
This was deprecated on 2007-03.
* Instance/resource-set.make: Removed support for
xxx_RESOURCE_FILES_INSTALL_DIR. This was deprecated on 2007-02.
* Documentations/releasenotes.texi: Explain the changes.
* RELEASENOTES: Regenerated.
2011-03-14 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Removed obsolete --with-system-root,

View file

@ -61,6 +61,13 @@ regardless of the prefix selected.
These configure options were obsolete and are ignored by all releases
in the past 4 years and have now finally been removed.
@item Removed obsolete variables
Some very old variables that were deprecated 4 years ago have now been
removed. This includes xxx_RESOURCE_FILES_INSTALL_DIR in
resource-set.make (you should use xxx_INSTALL_DIR instead) and
GNUSTEP_GSWAPPS in gswapp.make (you should use GNUSTEP_WEB_APPS
instead).
@end table
@section Version 2.4.0

View file

@ -58,10 +58,6 @@ GSWAPP_EXTENSION = gswa
internal-gswapp-uninstall_ \
internal-gswapp-copy_into_dir
# Defined (5 March 2007) for backwards compatibility in case your
# GNUmakefiles used it -- will be removed any time from 5 March 2011.
GNUSTEP_GSWAPPS = $(GNUSTEP_WEB_APPS)
#
# Determine where to install. By default, install into GNUSTEP_WEB_APPS.
#

View file

@ -59,18 +59,6 @@ ifneq ($($(GNUSTEP_INSTANCE)_INSTALL_DIR),)
RESOURCE_FILES_INSTALL_DIR = $($(GNUSTEP_INSTANCE)_INSTALL_DIR)
endif
# Use the old xxx_RESOURCE_FILES_INSTALL_DIR setting only if the new
# one is not available. If you need your makefile to be compatible
# with both old and new versions of make, you can use both settings.
ifeq ($($(GNUSTEP_INSTANCE)_INSTALL_DIR),)
ifneq ($($(GNUSTEP_INSTANCE)_RESOURCE_FILES_INSTALL_DIR),)
# This is deprecated because we need to prepend GNUSTEP_INSTALLATION_DIR to it, which
# is deprecated. This was deprecated on 12 Feb 2007.
$(warning xxx_RESOURCE_FILES_INSTALL_DIR is deprecated, please use xxx_INSTALL_DIR instead)
RESOURCE_FILES_INSTALL_DIR = $(GNUSTEP_INSTALLATION_DIR)/$($(GNUSTEP_INSTANCE)_RESOURCE_FILES_INSTALL_DIR)
endif
endif
ifeq ($(RESOURCE_FILES_INSTALL_DIR),)
RESOURCE_FILES_INSTALL_DIR = $(GNUSTEP_RESOURCES)/$(GNUSTEP_INSTANCE)
endif

View file

@ -59,6 +59,13 @@ using a newer version of the make system.
These configure options were obsolete and are ignored by all
releases in the past 4 years and have now finally been removed.
`Removed obsolete variables'
Some very old variables that were deprecated 4 years ago have now
been removed. This includes xxx_RESOURCE_FILES_INSTALL_DIR in
resource-set.make (you should use xxx_INSTALL_DIR instead) and
GNUSTEP_GSWAPPS in gswapp.make (you should use GNUSTEP_WEB_APPS
instead).
1.2 Version 2.4.0
=================