Advertisement
Guest User

Untitled

a guest
Sep 30th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. #!/usr/bin/env sh
  2. # Copyright 1999-2011 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-4.sh,v 1.1 2011/04/20 17:42:09 voyageur Exp $
  5.  
  6. # Test for an interactive shell
  7. case $- in
  8.         *i*)
  9.         ;;
  10.         *)
  11.                 return
  12.         ;;
  13. esac
  14.  
  15. GNUSTEP_SYSTEM_TOOLS=""/usr/bin
  16.  
  17. if [ -x ${GNUSTEP_SYSTEM_TOOLS}/make_services ]; then
  18.     ${GNUSTEP_SYSTEM_TOOLS}/make_services
  19. fi
  20.  
  21. if [ -x ${GNUSTEP_SYSTEM_TOOLS}/gdnc ]; then
  22.     ${GNUSTEP_SYSTEM_TOOLS}/gdnc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement