bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fix, Instance/Shared/bundle.make


From: Nicola Pero
Subject: Re: Fix, Instance/Shared/bundle.make
Date: Mon, 22 Jul 2002 12:39:23 +0100 (BST)

Thanks Georg, great :-)

I applied your fix to CVS.

> 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
> 
> _______________________________________________
> Bug-gnustep mailing list
> Bug-gnustep@gnu.org
> http://mail.gnu.org/mailman/listinfo/bug-gnustep
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]