]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Remove dependency on bash. Fixes BZ #347978.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 26 May 2015 11:52:45 +0000 (11:52 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 26 May 2015 11:52:45 +0000 (11:52 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15291

NEWS
auxprogs/gsl16test
auxprogs/gsl19test
drd/scripts/download-and-build-splash2.in

diff --git a/NEWS b/NEWS
index f4b2ce284dd19b52d953cc136c6f047c6450fed8..7c4a06e86277d778463325c0a83a7b4ec3230cec 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -217,6 +217,7 @@ where XXXXXX is the bug number as listed below.
 347379  valgrind --leak-check=full memleak errors from system libraries on OS X 10.8
         == 217236
 347389  unhandled syscall: 373 (Linux ARM syncfs)
+347978  Remove bash dependencies where not needed
 n-i-bz  Provide implementations of certain compiler builtins to support
         compilers who may not provide those
 n-i-bz  Old STABS code is still being compiled, but never used. Remove it.
index bd127d76eaf0c1c3b1307c175ef103d67f0bbbcd..f7e6bd50cc234edfeb5fce7e5bc18caa6375fc03 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh -x
 
 # Do an automated test which involves building and regtesting version
 # 1.6 of the GNU Scientific Library (gsl).  This has proven to be a 
@@ -43,7 +43,7 @@ runcmd () {
 
    (eval "$*") >> log.verbose 2>&1
 
-   if [ $? == 0 ]
+   if [ $? = 0 ]
    then
       echo "done"
       return 0
index 3c81e1d266ceefe632a9e9507821aaf287f3bfc9..b97738f506294b7a03a17e0023e49b30fc060e9e 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 # Do an automated test which involves building and regtesting version
 # 1.9 of the GNU Scientific Library (gsl).  This has proven to be a 
@@ -45,7 +45,7 @@ runcmd () {
 
    (eval "$*") >> log.verbose 2>&1
 
-   if [ $? == 0 ]
+   if [ $? = 0 ]
    then
       echo "done"
       return 0
index cb9809d084a417d9f056c71a8aeb5eec93df22fa..08686054202eb59412a245ac1c41cb83baaa74a9 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 downloads="$HOME/software/downloads"