diff options
author | danfe <danfe@FreeBSD.org> | 2016-10-17 12:00:20 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2016-10-17 12:00:20 +0800 |
commit | 273bab661418b8673817530d5dcf979f83581058 (patch) | |
tree | 473bf3e9dcb8e4384639fc0f62e42d482a77f975 /cad | |
parent | 1f1416a59e360fa4cc3e78ba33310f2ffcd0ff34 (diff) | |
download | freebsd-ports-gnome-273bab661418b8673817530d5dcf979f83581058.tar.gz freebsd-ports-gnome-273bab661418b8673817530d5dcf979f83581058.tar.zst freebsd-ports-gnome-273bab661418b8673817530d5dcf979f83581058.zip |
- Double-quote $@ to properly propagate parameters down the execution path
- Consistently pad (separate) shebang in wrapper scripts with an empty line
Diffstat (limited to 'cad')
-rw-r--r-- | cad/brlcad/files/mged.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cad/brlcad/files/mged.sh b/cad/brlcad/files/mged.sh index d819c2bb7301..02e3646ce752 100644 --- a/cad/brlcad/files/mged.sh +++ b/cad/brlcad/files/mged.sh @@ -10,4 +10,4 @@ export MANPATH=%%BRLCAD_ROOT%%/man:$MANPATH export ITCL_PATH=%%BRLCAD_ROOT%%/lib/itcl3.4 export ITK_PATH=%%BRLCAD_ROOT%%/lib/itk3.4 -exec %%BRLCAD_ROOT%%/bin/mged $@ +exec %%BRLCAD_ROOT%%/bin/mged "$@" |