Update pkgs/stdenv/generic/setup.sh: use [[ instead of [
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
80c9096d9c
commit
2c3b847d29
1 changed files with 1 additions and 1 deletions
|
@ -996,7 +996,7 @@ configurePhase() {
|
|||
|
||||
if [ -f "$configureScript" ]; then
|
||||
# Add --disable-dependency-tracking to speed up some builds.
|
||||
if [ -z "${dontAddDisableDepTrack:-}" ]; then
|
||||
if [[ -z ${dontAddDisableDepTrack:-} ]]; then
|
||||
if grep -q dependency-tracking "$configureScript"; then
|
||||
configureFlags="--disable-dependency-tracking $configureFlags"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue