mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Added new xxx_INSTALL_DIR variables for resources to get it working with new gnustep-make
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24548 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4d5c1baa75
commit
0ae3b84de5
3 changed files with 17 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-02-14 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Resources/GNUmakefile (base-resources_INSTALL_DIR): New variable
|
||||
to get it working with new gnustep-make. Keep the old one around
|
||||
for older gnustep-makes.
|
||||
* Source/GNUmakefile (libbase-resources_INSTALL_DIR): Same change.
|
||||
|
||||
2007-02-14 Roland Schwingel <roland.schwingel@onevision.de>
|
||||
|
||||
* Source/NSTimeZone.m: windows bugfix for daylight savings time.
|
||||
|
|
|
@ -27,7 +27,10 @@ GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../base.make
|
|||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
RESOURCE_SET_NAME = base-resources
|
||||
base-resources_RESOURCE_FILES_INSTALL_DIR = Library/Libraries/Resources/gnustep-base
|
||||
# This is for gnustep-make >= 14-02-2007
|
||||
base-resources_INSTALL_DIR = $(GNUSTEP_RESOURCES)/gnustep-base
|
||||
# This is kept temporarily for gnustep-make < 14-02-2007
|
||||
base-resources_RESOURCE_FILES_INSTALL_DIR = /Library/Libraries/Resources/gnustep-base
|
||||
base-resources_LANGUAGES = English German French Italian TraditionalChinese \
|
||||
Spanish Esperanto Korean
|
||||
base-resources_LOCALIZED_RESOURCE_FILES = Localizable.strings
|
||||
|
|
|
@ -409,7 +409,12 @@ libgnustep-base_HEADER_FILES = $(FOUNDATION_HEADERS)
|
|||
|
||||
# Resources
|
||||
RESOURCE_SET_NAME = libbase-resources
|
||||
libbase-resources_RESOURCE_FILES_INSTALL_DIR = Library/Libraries/Resources/gnustep-base
|
||||
|
||||
# This is for gnustep-make >= 14-02-2007
|
||||
libbase-resources_INSTALL_DIR = $(GNUSTEP_LIBRARY)/Libraries/Resources/gnustep-base
|
||||
# This is kept temporarily for gnustep-make < 14-02-2007
|
||||
libbase-resources_RESOURCE_FILES_INSTALL_DIR = /Library/Libraries/Resources/gnustep-base
|
||||
|
||||
libbase-resources_LANGUAGES =
|
||||
libbase-resources_LOCALIZED_RESOURCE_FILES =
|
||||
libbase-resources_RESOURCE_DIRS =
|
||||
|
|
Loading…
Reference in a new issue