[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Fix, Instance/Shared/bundle.make
From: |
Georg Fleischmann |
Subject: |
Fix, Instance/Shared/bundle.make |
Date: |
Sat, 20 Jul 2002 23:04:57 GMT |
Hi,
here is a patch for the Instance/Shared/bundle.make.
Copying localized resources from the subproject to the application bundle
worked for one language, but produced an error for multiple languages
(comparison with a file list failed).
With the patch it works for all my subprojects.
Georg
2002-07-20 Georg Fleischmann
* make/Instance/Shared/bundle.make:
copying of localized resources from subprojects with
multiple languages corrected
*** make/Instance/Shared/bundle.make.old Fri Jun 28 21:10:56 2002
--- make/Instance/Shared/bundle.make Sun Jul 21 00:45:14 2002
***************
*** 209,218 ****
ifneq ($(_SUBPROJECTS),)
$(ECHO_COPYING_RESOURCES_FROM_SUBPROJS)for subproject in
$(_SUBPROJECTS); do \
if [ -d $$subproject/Resources/Subproject ]; then \
! if [ $$subproject/Resources/Subproject/* !=
$$subproject'/Resources/Subproject/*' ]; then \
! cp -r $$subproject/Resources/Subproject/* \
! $(GNUSTEP_SHARED_INSTANCE_BUNDLE_RESOURCE_PATH)/; \
! fi; \
fi; \
done$(END_ECHO)
endif
--- 209,219 ----
ifneq ($(_SUBPROJECTS),)
$(ECHO_COPYING_RESOURCES_FROM_SUBPROJS)for subproject in
$(_SUBPROJECTS); do \
if [ -d $$subproject/Resources/Subproject ]; then \
! for f in $$subproject/Resources/Subproject/*; do \
! if [ $$f != $$subproject'/Resources/Subproject/*' ]; then \
! cp -r $$f $(GNUSTEP_SHARED_INSTANCE_BUNDLE_RESOURCE_PATH)/; \
! fi; \
! done; \
fi; \
done$(END_ECHO)
endif
- Fix, Instance/Shared/bundle.make,
Georg Fleischmann <=