about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-06-12 08:37:07 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-06-12 08:37:07 +0000
commit60c2c8eefebbfeea6a0dff589cf5ffef607a3888 (patch)
tree07d96dfb73099fccf91a79aa0c52aa13d2375339 /pkgs/top-level
parent7be33e7fd15311382bf807d0f109869ab4d4ec0a (diff)
downloadnixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.tar
nixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.tar.gz
nixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.tar.bz2
nixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.tar.lz
nixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.tar.xz
nixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.tar.zst
nixlib-60c2c8eefebbfeea6a0dff589cf5ffef607a3888.zip
Fixed patching shebang to be builder-defs style (startNest will be added on its own)
svn path=/nixpkgs/trunk/; revision=12049
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/builder-defs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/builder-defs.nix b/pkgs/top-level/builder-defs.nix
index f59f916575a8..837ca0c0f8b7 100644
--- a/pkgs/top-level/builder-defs.nix
+++ b/pkgs/top-level/builder-defs.nix
@@ -491,7 +491,7 @@ args: with args; with stringsWithDeps; with lib;
      # specified  directory tree to paths found in $PATH.  E.g.,
      # /bin/sh will be rewritten to /nix/store/<hash>-some-bash/bin/sh.
      # Interpreters that are already in the store are left untouched.
-         header "patching script interpreter paths"
+         echo "patching script interpreter paths"
          local f
          for f in $(find "${dir}" -type f -perm +0100); do
              local oldPath=$(sed -ne '1 s,^#![ ]*\([^ ]*\).*$,\1,p' "$f")