diff options
author | Jason W. Bacon <jwb@FreeBSD.org> | 2021-09-06 10:13:03 -0500 |
---|---|---|
committer | Jason W. Bacon <jwb@FreeBSD.org> | 2021-09-06 10:13:03 -0500 |
commit | e47c577da6ce40e629041a92a327d9648ef72bd0 (patch) | |
tree | 2a10c319462c607a5e6c142c20087d1fc9bf9201 /biology/emboss/files/emboss-shell.in | |
parent | audio/libsamplerate: Update to 0.2.2 (diff) |
biology/emboss: Put emboss-shell in default PATH
PREFIX is overridden by default in the port Makefile, so PREFIX/bin
is not normally in PATH. The purpose of emboss-shell is to prepend
PREFIX/bin to PATH to give access to emboss tools.
Also fix tcsh detection.
PR: 258316
Diffstat (limited to 'biology/emboss/files/emboss-shell.in')
-rwxr-xr-x | biology/emboss/files/emboss-shell.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/biology/emboss/files/emboss-shell.in b/biology/emboss/files/emboss-shell.in index 525b04bcc397..319aad3bfa2a 100755 --- a/biology/emboss/files/emboss-shell.in +++ b/biology/emboss/files/emboss-shell.in @@ -20,7 +20,7 @@ EOM export PATH=${emboss_bin}:$PATH # Invoke the user's chosen shell -if echo $SHELL | grep -q '/t?csh'; then +if echo $SHELL | egrep -q '/t?csh'; then args='-f' fi exec $SHELL $args |