diff options
Diffstat (limited to 'source/d')
-rwxr-xr-x | source/d/bison/bison.SlackBuild | 20 | ||||
-rwxr-xr-x | source/d/clisp/clisp.SlackBuild | 3 | ||||
-rwxr-xr-x | source/d/gdb/gdb.SlackBuild | 20 | ||||
-rwxr-xr-x | source/d/guile/guile.SlackBuild | 3 | ||||
-rwxr-xr-x | source/d/m4/m4.SlackBuild | 3 | ||||
-rwxr-xr-x | source/d/rcs/rcs.SlackBuild | 3 |
6 files changed, 14 insertions, 38 deletions
diff --git a/source/d/bison/bison.SlackBuild b/source/d/bison/bison.SlackBuild index 713fda617..03b8b41b8 100755 --- a/source/d/bison/bison.SlackBuild +++ b/source/d/bison/bison.SlackBuild @@ -78,25 +78,7 @@ find . \ -exec chmod 644 {} \; # 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") CFLAGS="$SLKCFLAGS" \ ./configure \ diff --git a/source/d/clisp/clisp.SlackBuild b/source/d/clisp/clisp.SlackBuild index 4205aa137..3b210fdac 100755 --- a/source/d/clisp/clisp.SlackBuild +++ b/source/d/clisp/clisp.SlackBuild @@ -61,6 +61,9 @@ else LIBDIRSUFFIX="" fi +# Don't use icecream: +PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g") + NUMJOBS=${NUMJOBS:-" -j7 "} TMP=${TMP:-/tmp} diff --git a/source/d/gdb/gdb.SlackBuild b/source/d/gdb/gdb.SlackBuild index 41b0fd5d7..e697bf4a4 100755 --- a/source/d/gdb/gdb.SlackBuild +++ b/source/d/gdb/gdb.SlackBuild @@ -56,25 +56,7 @@ TMP=${TMP:-/tmp} PKG=$TMP/package-gdb # 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") rm -rf $PKG mkdir -p $TMP $PKG diff --git a/source/d/guile/guile.SlackBuild b/source/d/guile/guile.SlackBuild index f90537a15..ff00e4190 100755 --- a/source/d/guile/guile.SlackBuild +++ b/source/d/guile/guile.SlackBuild @@ -65,6 +65,9 @@ else LIBDIRSUFFIX="" fi +# Don't use icecream: +PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g") + cd $TMP rm -rf guile-$VERSION tar xvf $CWD/guile-$VERSION.tar.?z || exit 1 diff --git a/source/d/m4/m4.SlackBuild b/source/d/m4/m4.SlackBuild index 0bc3f10fc..e297a1830 100755 --- a/source/d/m4/m4.SlackBuild +++ b/source/d/m4/m4.SlackBuild @@ -63,6 +63,9 @@ else LIBDIRSUFFIX="" fi +# Don't use icecream: +PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g") + rm -rf $PKG mkdir -p $TMP $PKG diff --git a/source/d/rcs/rcs.SlackBuild b/source/d/rcs/rcs.SlackBuild index f2348714b..d0bc509e8 100755 --- a/source/d/rcs/rcs.SlackBuild +++ b/source/d/rcs/rcs.SlackBuild @@ -73,6 +73,9 @@ else LIBDIRSUFFIX="" fi +# Don't use icecream: +PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g") + TMP=${TMP:-/tmp} PKG=$TMP/package-$PKGNAM |