From 8a0cb64aff6ab34d70ac6fd6c89632230ccbc310 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 12 Sep 2020 03:13:28 -0400 Subject: Move /opt/local behind /usr again The reason I did this with pkgsrc was because I actually don't want the man(1) from mandoc, since it won't follow MANSECT. Same applies to MacPorts. I wish I could disable its man(1) with a variant or whatever. --- home/.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.profile b/home/.profile index ed6d9c67..c54814de 100644 --- a/home/.profile +++ b/home/.profile @@ -1,6 +1,6 @@ _PATH=$PATH PATH= path() { [ -d "$1" ] && PATH="${PATH}${PATH:+:}${1}"; } -for prefix in '' /usr/local /opt/local /usr ~/.local; do +for prefix in '' /usr/local /usr /opt/local ~/.local; do path "${prefix}/sbin" path "${prefix}/bin" done -- cgit 1.4.1 /> patched shell with cmake build
summary refs log tree commit diff
path: root/autogen.sh (unfollow)
Commit message (Expand)Author
2018-05-03Release 0.5.10.Herbert Xu
2018-04-19eval: Variable assignments on functions are no longer persistentHerbert Xu
2018-04-19parser: Fix parameter expansion inside inner double quotesHerbert Xu
2018-04-19parser: Fix parsing of ${}Herbert Xu
2018-04-19man: correct typos, iff -> ifMartijn Dekker
2018-04-19expand: Do not quote backslashes in unquoted parameter expansionHerbert Xu
2018-04-19shell: Add subdir-objects to AM_INIT_AUTOMAKEJason Bowen
2018-04-19eval: Restore input files in evalcommandHerbert Xu
2018-04-19eval: Reap zombies after built-in commands and functionsHerbert Xu
2018-04-19redir: Fix typo in noclobber codeHerbert Xu
2018-04-19expand: Fix glibc glob(3) supportHerbert Xu
2018-04-02expand: Fix buffer overflow in expandmetaHerbert Xu
2018-04-02builtin: Move echo space/nl handling into print_escape_strHerbert Xu
2018-04-02builtin: Fix echo performance regressionHerbert Xu
2018-04-02expand: Fix ghost fields with unquoted $@/$*Herbert Xu
2018-04-02parser: Allow newlines within parameter substitutionHerbert Xu
2018-04-02expand: Fix bugs with words connected to the right of $@Herbert Xu
2018-03-25Revert "[BUILTIN] Remove unnecessary restoration of format string in printf"Herbert Xu
2018-03-22parser: Fix backquote support in here-document EOF markHerbert Xu