-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More native integration for applications ... install a symlink into T…
…ools to start them up very fast, shortcutting the *step emulation layer git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@24828 72102866-910b-0410-8b05-ffd578937521
- Loading branch information
nicola
committed
Mar 8, 2007
1 parent
b430266
commit 7a45560
Showing
4 changed files
with
88 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
2007-03-08 Nicola Pero <[email protected]> | ||
|
||
You can now start up applications on the command line by just | ||
using their name. Eg, 'Gorm'. To support this, we install a | ||
wrapper in the tools directory (which is in your PATH). | ||
* app-wrapper.template: New file. | ||
* GNUmakefile.in (install): Install app-wrapper.template. | ||
(uninstall): Uninstall it. | ||
* Instance/application.make ($(GNUSTEP_TOOLS), | ||
internal-install-app-wrapper, internal-uninstall-app-wrapper): New | ||
rules that install/uninstall app-wrapper.template into | ||
GNUSTEP_TOOLS with the name of the application. If symlinks are | ||
available, don't install a wrapper script but symlink directly the | ||
binary for maximum speed ('Gorm' will be much faster than 'openapp | ||
Gorm' in this situation). | ||
(internal-app-install_): Depend on internal-install-app-wrapper. | ||
(internal-app-uninstall_): Depend on | ||
internal-uninstall-app-wrapper. | ||
|
||
* Instance/application.make ($(APP_DIR)/$(GNUSTEP_INSTANCE)): | ||
Added missing CHOWN command. | ||
|
||
2007-03-08 Nicola Pero <[email protected]> | ||
|
||
* GNUstep.csh.in: Fixed typo when setting up PATH (Reported by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#! /bin/sh | ||
exec openapp "GNUSTEP_INSTANCE" "$@" |