mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Minor solaris fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9902 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b7deff249a
commit
723f9ee9ac
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2001-05-08 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* bundle.make ($(BUNDLE_DIR_NAME)/Contents/Resources): Remove
|
||||
link before making it (Solaris ln -f doesn't work).
|
||||
* openapp.in: Add linefeed at end (Solaris sed doesn't work well
|
||||
without it).
|
||||
|
||||
2001-05-05 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||||
|
||||
* target.make: fix library soname for FreeBSD ELF.
|
||||
|
|
|
@ -184,7 +184,7 @@ $(BUNDLE_DIR_NAME)/Contents :
|
|||
|
||||
$(BUNDLE_DIR_NAME)/Contents/Resources : $(BUNDLE_DIR_NAME)/Contents \
|
||||
$(BUNDLE_DIR_NAME)/Resources
|
||||
@(cd $(BUNDLE_DIR_NAME)/Contents;\
|
||||
@(cd $(BUNDLE_DIR_NAME)/Contents; rm -f Resources; \
|
||||
$(LN_S) -f ../Resources .)
|
||||
|
||||
$(BUNDLE_DIR_NAME)/Contents/Info.plist: $(BUNDLE_DIR_NAME)/Contents
|
||||
|
|
|
@ -97,4 +97,5 @@ if [ ! -f $full_appname/$appname ]; then
|
|||
fi
|
||||
|
||||
IFS=" "
|
||||
$full_appname/$appname $@
|
||||
$full_appname/$appname $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue