diff --git a/ChangeLog b/ChangeLog index f7a9114d..2c250b77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jul 20 10:38:25 1998 Adam Fedor + + * application.make (app-resource-files): Use For loop to copy files. + * bundle.make (app-resource-files): Likewise. + Fri Jul 10 21:46:19 1998 Adam Fedor * target.make (HP_UX SHARED_LINK): Fix up including *.o files. diff --git a/application.make b/application.make index bc80341e..3ed06d6c 100644 --- a/application.make +++ b/application.make @@ -148,7 +148,9 @@ app-resource-dir:: app-resource-files:: $(APP_DIR_NAME)/Resources/Info-gnustep.plist app-resource-dir @(if [ "$(RESOURCE_FILES)" != "" ]; then \ echo "Copying resources into the application wrapper..."; \ - cp -r $(RESOURCE_FILES) $(APP_DIR_NAME)/Resources/$(RESOURCE_FILES); \ + for f in $(RESOURCE_FILES); do \ + cp -r $$f $(APP_DIR_NAME)/Resources/$$f; \ + done \ fi) $(APP_DIR_NAME)/Resources/Info-gnustep.plist: $(APP_DIR_NAME)/Resources diff --git a/bundle.make b/bundle.make index 41ee271f..bce5f0bb 100644 --- a/bundle.make +++ b/bundle.make @@ -98,7 +98,9 @@ $(BUNDLE_FILE) : $(C_OBJ_FILES) $(OBJC_OBJ_FILES) bundle-resource-files:: $(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist @(if [ "$(RESOURCE_FILES)" != "" ]; then \ echo "Copying resources into the bundle wrapper..."; \ - cp -r $(RESOURCE_FILES) $(BUNDLE_DIR_NAME)/Resources; \ + for f in $(RESOURCE_FILES); do \ + cp -r $$f $(BUNDLE_DIR_NAME)/Resources/$$f; \ + done; \ fi)