mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Fix up some installation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16618 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b88bc69504
commit
fa9f9f2c75
6 changed files with 25 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-05-02 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* common.make (GNUSTEP_PALLETES): Put in ApplicationSupport/Palettes
|
||||
* move_obsolete_paths.sh: Remove Developer dir.
|
||||
* Documentat/GNUmakefile.in: Install docs in Library/Documentation
|
||||
|
||||
2003-04-28 Nicola Pero <nicola@nicola.brainstorm.co.uk>
|
||||
|
||||
* Instance/resource-set.make (RESOURCE_FILES_FULL_INSTALL_DIR): Reverted
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
# Install into the system root by default
|
||||
prefix = @prefix@
|
||||
GNUSTEP_INSTALLATION_DIR = $(prefix)
|
||||
GNUSTEP_DOCUMENTATION = $(GNUSTEP_INSTALLATION_DIR)/Documentation
|
||||
GNUSTEP_DOCUMENTATION = $(GNUSTEP_INSTALLATION_DIR)/Library/Documentation
|
||||
GNUSTEP_DOCUMENTATION_INFO = $(GNUSTEP_DOCUMENTATION)/info
|
||||
MAKEFILE_NAME = GNUmakefile
|
||||
|
||||
|
|
|
@ -285,6 +285,15 @@ Tools that are written in languages other than Objective-C, or are developed
|
|||
to work with other runtime environments may have their own directory within
|
||||
the Tools directory (for example: @file{Tools/Java}).
|
||||
|
||||
@node share, , Tools, Description
|
||||
@subsection share
|
||||
|
||||
The share directory is used for configuration and installation
|
||||
of the core GNUstep libraries and any additional libraries that
|
||||
need configuration information. It is used by the configure (autoconf)
|
||||
program.
|
||||
|
||||
|
||||
@node Library, , Tools, Description
|
||||
@subsection Library
|
||||
|
||||
|
|
|
@ -191,7 +191,7 @@ GNUSTEP_SERVICES = $(GNUSTEP_INSTALLATION_DIR)/Library/Services
|
|||
GNUSTEP_HEADERS = $(GNUSTEP_INSTALLATION_DIR)/Library/Headers
|
||||
GNUSTEP_BUNDLES = $(GNUSTEP_INSTALLATION_DIR)/Library/Bundles
|
||||
GNUSTEP_FRAMEWORKS = $(GNUSTEP_INSTALLATION_DIR)/Library/Frameworks
|
||||
GNUSTEP_PALETTES = $(GNUSTEP_INSTALLATION_DIR)/Developer/Palettes
|
||||
GNUSTEP_PALETTES = $(GNUSTEP_LIBRARY)/ApplicationSupport/Palettes
|
||||
GNUSTEP_LIBRARIES = $(GNUSTEP_INSTALLATION_DIR)/Library/Libraries
|
||||
GNUSTEP_RESOURCES = $(GNUSTEP_INSTALLATION_DIR)/Library/Libraries/Resources
|
||||
GNUSTEP_JAVA = $(GNUSTEP_INSTALLATION_DIR)/Library/Libraries/Java
|
||||
|
|
|
@ -46,7 +46,6 @@ basepath="$1"
|
|||
|
||||
${mydir}/mkinstalldirs "$basepath" \
|
||||
"$basepath"/Applications \
|
||||
"$basepath"/Developer/Palettes \
|
||||
"$basepath"/Tools/${GNUSTEP_TARGET_LDIR} \
|
||||
"$basepath"/Tools/Resources \
|
||||
"$basepath"/Tools/Java \
|
||||
|
|
|
@ -179,4 +179,12 @@ for dir in $@; do
|
|||
echo Removed $resourcedir/$subpath
|
||||
fi
|
||||
|
||||
#
|
||||
# Remove these - obsolete
|
||||
#
|
||||
if [ -d $dir/Developer ]; then
|
||||
rm -rf $dir/Developer
|
||||
echo Removed $dir/Developer
|
||||
fi
|
||||
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue