mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
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:
parent
da0e898072
commit
6a94d2cb10
3 changed files with 28 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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}" == "" )
|
||||
|
|
|
@ -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" ]
|
||||
|
|
Loading…
Reference in a new issue