diff options
Diffstat (limited to 'source/ap/man-db/man-db.SlackBuild')
-rwxr-xr-x | source/ap/man-db/man-db.SlackBuild | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/source/ap/man-db/man-db.SlackBuild b/source/ap/man-db/man-db.SlackBuild index dd3faec2b..080d97594 100755 --- a/source/ap/man-db/man-db.SlackBuild +++ b/source/ap/man-db/man-db.SlackBuild @@ -103,25 +103,7 @@ else fi # Don't use icecream: -for path_element in $(echo $PATH | tr ':' '\n') ; do - if [ "$path_element" = "/usr/libexec/icecc/bin" ]; then - continue - fi - if [ -z "$REVERSE_PATH" ]; then - REVERSE_PATH="$path_element" - else - REVERSE_PATH="${REVERSE_PATH}:$path_element" - fi -done -for path_element in $(echo $REVERSE_PATH | tr ':' '\n') ; do - if [ -z "$FORWARD_PATH" ]; then - FORWARD_PATH="$path_element" - else - FORWARD_PATH="${FORWARD_PATH}:$path_element" - fi -done -PATH=$FORWARD_PATH -unset FORWARD_PATH REVERSE_PATH +PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g") # By default, install binaries to /opt, so as not to stomp on Slackware's # man pkg. We will have to include a /etc/profile.d script to set PATH, |