summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2017-08-09 17:33:02 +0100
committerLinus Heckemann <git@sphalerite.org>2017-08-09 17:33:02 +0100
commit17753fa005feafbcc798996989909ba563153034 (patch)
treeae64b67b85af5fe313f84e1adc66471724dab687 /pkgs/stdenv
parent771f28bac804dfb6ebf99122bfe4e5393d9c278d (diff)
downloadnixpkgs-17753fa005feafbcc798996989909ba563153034.tar
nixpkgs-17753fa005feafbcc798996989909ba563153034.tar.gz
nixpkgs-17753fa005feafbcc798996989909ba563153034.tar.bz2
nixpkgs-17753fa005feafbcc798996989909ba563153034.tar.lz
nixpkgs-17753fa005feafbcc798996989909ba563153034.tar.xz
nixpkgs-17753fa005feafbcc798996989909ba563153034.tar.zst
nixpkgs-17753fa005feafbcc798996989909ba563153034.zip
stdenv: fix typo in setup.sh
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/generic/setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh
index 81ed1c635e1..b6bca3e1f56 100644
--- a/pkgs/stdenv/generic/setup.sh
+++ b/pkgs/stdenv/generic/setup.sh
@@ -750,7 +750,7 @@ configurePhase() {
 buildPhase() {
     runHook preBuild
 
-    if [[ -z "$makeFlags" && ! ( -n "$makefile" || -e Makefile || -e makefile || -e GNUmakefile[[ ) ]]; then
+    if [[ -z "$makeFlags" && ! ( -n "$makefile" || -e Makefile || -e makefile || -e GNUmakefile ) ]]; then
         echo "no Makefile, doing nothing"
     else
         # See https://github.com/NixOS/nixpkgs/pull/1354#issuecomment-31260409