blob: e69e18bc8f1bc8c05d94cc8da4792583a89af8d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env sh
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-2.sh,v 1.2 2007/11/20 19:12:13 grobian Exp $
# Test for an interactive shell
case $- in
*i*)
;;
*)
return
;;
esac
GNUSTEP_SYSTEM_TOOLS=/usr/GNUstep/System/Tools
if [ -x ${GNUSTEP_SYSTEM_TOOLS}/make_services ]; then
${GNUSTEP_SYSTEM_TOOLS}/make_services
fi
if [ -x ${GNUSTEP_SYSTEM_TOOLS}/gdnc ]; then
${GNUSTEP_SYSTEM_TOOLS}/gdnc
fi
|