From c391bd3dd31cec6662995bfe6cea7a36fa3e0b5a Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Wed, 11 Jul 2018 11:45:23 -0400 Subject: xcbuild: cleanup fix shell shebang --- pkgs/development/tools/xcbuild/wrapper.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pkgs/development/tools/xcbuild') diff --git a/pkgs/development/tools/xcbuild/wrapper.nix b/pkgs/development/tools/xcbuild/wrapper.nix index d2044ea40ad..1735124439e 100644 --- a/pkgs/development/tools/xcbuild/wrapper.nix +++ b/pkgs/development/tools/xcbuild/wrapper.nix @@ -1,5 +1,4 @@ { stdenv, lib, buildPackages, makeWrapper, writeText, runCommand -, bash , CoreServices, ImageIO, CoreGraphics , targetPlatform , xcodePlatform ? targetPlatform.xcodePlatform or "MacOSX" @@ -37,7 +36,7 @@ let ''; xcode-select = writeText "xcode-select" '' -#!${bash}/bin/sh +#!${stdenv.shell} while [ $# -gt 0 ]; do case "$1" in -h | --help) ;; # noop @@ -52,7 +51,7 @@ done ''; xcrun = writeText "xcrun" '' -#!${bash}/bin/sh +#!${stdenv.shell} while [ $# -gt 0 ]; do case "$1" in --sdk | -sdk) shift ;; -- cgit 1.4.1