Run make_services

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3539 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-01-07 18:26:43 +00:00
parent da0e898072
commit 6a94d2cb10
3 changed files with 28 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Thu Jan 7 18:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* GNUstep.sh.in: Run make_services to rebuild caches.
* GNUstep.csh.in: ditto
Sat Jan 2 12:26:20 1999 Adam Fedor <fedor@ultra.doc.com>
* configure.in: Check for DPS/dpsNXargs.h header.

View file

@ -75,4 +75,12 @@ if ( -e ~/.GNUstep/GNUstep.csh ) then
. ~/.GNUstep/GNUstep.csh
endif
set TDIR=${GNUSTEP_SYSTEM_ROOT}/Tools/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS
if ( -e $TDIR/$LIBRARY_COMBO/make_services ) then
$TDIR/$LIBRARY_COMBO/make_services &
if ( -e $TDIR/make_services ) then
$TDIR/make_services &
endif
endif
endif # ( "${GNUSTEP_BUILD_ROOT}" == "" )

View file

@ -79,4 +79,19 @@ then
. ~/.GNUstep/GNUstep.sh
fi
#
# Run 'make_services' in background if possible - updates cache of services
# and applications/file-extensions known to the applications.
#
TDIR=$GNUSTEP_SYSTEM_ROOT/Tools/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS
if [ -f $TDIR/$LIBRARY_COMBO/make_services ]
then
$TDIR/$LIBRARY_COMBO/make_services &
else
if [ -f $TDIR/make_services ]
then
$TDIR/make_services &
fi
fi
fi # [ -z "$GNUSTEP_BUILD_ROOT" ]