mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Added mnissing backslashes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@8346 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e3e780e5c1
commit
9974ee9424
2 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-12-18 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* bundle.make: Add a couple of missing backslashes as reported by
|
||||
enrico@imago.ro
|
||||
|
||||
2000-12-14 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.in (CFLAGS): Strip -g (debug=yes adds that automatically).
|
||||
|
|
10
bundle.make
10
bundle.make
|
@ -180,8 +180,8 @@ endif
|
|||
$(BUNDLE_DIR_NAME)/Contents :
|
||||
@$(MKDIRS) $@
|
||||
|
||||
$(BUNDLE_DIR_NAME)/Contents/Resources : $(BUNDLE_DIR_NAME)/Contents
|
||||
$(BUNDLE_DIR_NAME)/Resources
|
||||
$(BUNDLE_DIR_NAME)/Contents/Resources : $(BUNDLE_DIR_NAME)/Contents \
|
||||
$(BUNDLE_DIR_NAME)/Resources
|
||||
@(cd $(BUNDLE_DIR_NAME)/Contents;\
|
||||
$(LN_S) -f ../Resources .)
|
||||
|
||||
|
@ -203,9 +203,9 @@ $(BUNDLE_DIR_NAME)/Contents/Info.plist: $(BUNDLE_DIR_NAME)/Contents
|
|||
echo "</plist>";\
|
||||
) >$@
|
||||
|
||||
build-macosx-bundle :: $(BUNDLE_DIR_NAME)/Contents
|
||||
$(BUNDLE_DIR_NAME)/Contents/Resources
|
||||
$(BUNDLE_DIR_NAME)/Contents/Info.plist
|
||||
build-macosx-bundle :: $(BUNDLE_DIR_NAME)/Contents \
|
||||
$(BUNDLE_DIR_NAME)/Contents/Resources \
|
||||
$(BUNDLE_DIR_NAME)/Contents/Info.plist
|
||||
|
||||
# GNUstep bundles
|
||||
$(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist: $(BUNDLE_DIR_NAME)/Resources
|
||||
|
|
Loading…
Reference in a new issue