mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Makefile fix ups.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3361 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3bc05a0c62
commit
6d2888ec7a
4 changed files with 23 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
Tue Dec 1 09:31:59 1998 Adam Fedor <fedor@ultra.doc.com>
|
||||
|
||||
* src/Makefile.postamble: new variable INSTALL_ROOT_DIR, such that
|
||||
/etc/services can be installed somewhere (need this for building
|
||||
Debian binary packages). Patch from Matthias Klose
|
||||
<doko@cs.tu-berlin.de>.
|
||||
|
||||
Mon Nov 30 10:20:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* src/NSTask: Minor bugfix -ignore SIGCHLD
|
||||
|
|
|
@ -53,9 +53,20 @@ after-install::
|
|||
$(INSTALL_DATA) ./include/$$file \
|
||||
$(GNUSTEP_HEADERS)/gnustep/base/$$file ; \
|
||||
done
|
||||
if [ "`fgrep gdomap /etc/services`" = "" ]; then \
|
||||
echo "gdomap 538/tcp # GNUstep distrib objects" >> /etc/services; \
|
||||
echo "gdomap 538/udp # GNUstep distrib objects" >> /etc/services; \
|
||||
if [ "$(INSTALL_ROOT_DIR)" = "" ]; then \
|
||||
if [ "`whoami`" != root ]; then \
|
||||
echo "WARNING: Please add the following lines yourself"; \
|
||||
fi; \
|
||||
services=/etc/services; \
|
||||
else \
|
||||
mkdir -p $(INSTALL_ROOT_DIR)/etc; \
|
||||
services=$(INSTALL_ROOT_DIR)/etc/services.add; \
|
||||
echo "GNUstep addons for /etc/services written to $$services"; \
|
||||
fi; \
|
||||
if [ "`fgrep gdomap $$services >/dev/null`" = "" ]; then \
|
||||
set -x; \
|
||||
echo "gdomap 538/tcp # GNUstep distrib objects" >> $$services; \
|
||||
echo "gdomap 538/udp # GNUstep distrib objects" >> $$services; \
|
||||
fi
|
||||
|
||||
# Things to do before uninstalling
|
||||
|
|
|
@ -7,3 +7,4 @@ nstimer nsnotification nxst fref heap basic
|
|||
release nsscanner nsdate awake thread-except nscharacterset
|
||||
|
||||
*.txt *.dat
|
||||
LoadMe.bundle
|
||||
|
|
1
Version
1
Version
|
@ -1,4 +1,5 @@
|
|||
# This file is included in various Makefile's to get version information.
|
||||
# Compatible with Bourne shell syntax, so it can included there too.
|
||||
|
||||
# The gcc version required to compile the library.
|
||||
GCC_VERSION=2.8.0
|
||||
|
|
Loading…
Reference in a new issue