home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / debugapp < prev    next >
Encoding:
Text File  |  2007-10-30  |  985 b   |  33 lines

  1. #!/bin/sh
  2. # debugapp
  3. #
  4. # Copyright (C) 2006 Free Software Foundation, Inc.
  5. #
  6. # Author: Nicola Pero <nicola.pero@meta-innovation.com>
  7. # Date: October 2006
  8. # This file is part of the GNUstep Makefile Package.
  9. #
  10. # This library is free software; you can redistribute it and/or
  11. # modify it under the terms of the GNU General Public License
  12. # as published by the Free Software Foundation; either version 3
  13. # of the License, or (at your option) any later version.
  14. # You should have received a copy of the GNU General Public
  15. # License along with this library; see the file COPYING.
  16. # If not, write to the Free Software Foundation,
  17. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18.  
  19. # debugapp is now a wrapper over 'openapp'.
  20.  
  21. # To pass control to openapp we use 'source' here, instead of 'exec',
  22. # because we want the help messages to display 'debugapp' as the
  23. # application name instead of 'openapp'.
  24.  
  25. # Set debug mode
  26. openapp_debug_mode=yes;
  27.  
  28. # Source openapp
  29. . openapp
  30.  
  31.