fixed copying resources from subdirs into bundles.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16625 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-05-04 23:08:56 +00:00
parent d3f77df53a
commit 1c549574c4
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Mon May 5 00:52:20 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed
copying resource files and localized resource files into the
bundle when they are in subdirs.
2003-05-02 Adam Fedor <fedor@gnu.org>
* common.make (GNUSTEP_PALLETES): Put in ApplicationSupport/Palettes

View file

@ -188,7 +188,7 @@ shared-instance-bundle-all: $(GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH) \
ifneq ($(RESOURCE_FILES),)
$(ECHO_COPYING_RESOURCES)for f in $(RESOURCE_FILES); do \
if [ -f $$f -o -d $$f ]; then \
cp -r $$f $(GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH); \
cp -r $$f $(GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH)/$$f; \
else \
echo "Warning: $$f not found - ignoring"; \
fi; \
@ -213,7 +213,7 @@ ifneq ($(LOCALIZED_RESOURCE_FILES),)
for f in $(LOCALIZED_RESOURCE_FILES); do \
if [ -f $$l.lproj/$$f -o -d $$l.lproj/$$f ]; then \
cp -r $$l.lproj/$$f \
$(GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH)/$$l.lproj; \
$(GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH)/$$l.lproj/$$f; \
else \
echo "Warning: $$l.lproj/$$f not found - ignoring"; \
fi; \