Skip to content

Commit

Permalink
Merge pull request #270 from chef/jcd/fix-shebang-to-sh
Browse files Browse the repository at this point in the history
Merged change 73d4b7a8-5320-418c-9ae2-2e51f8d84e5d

From review branch jcd/fix-shebang-to-sh into master

Signed-off-by: jtimberman <[email protected]>
  • Loading branch information
chef-delivery committed Mar 8, 2016
2 parents 4499ba1 + 85f4a34 commit 1cfc3ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plans/glibc/plan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ do_install() {
rm -f $pkg_path/bin/sln

# Update the shebangs of a few shell scripts that have a fully-qualified
# path to the `chef/bash` package which built the software.
# path to `/bin/sh` so they will work in a minimal busybox
for b in ldd sotruss tzselect xtrace; do
sed -e 's,^#!.*$,#! /bin/bash,' -i $pkg_path/bin/$b
sed -e 's,^#!.*$,#! /bin/sh,' -i $pkg_path/bin/$b
done

# Include the Linux kernel headers in Glibc, except the `scsi/` directory,
Expand Down

0 comments on commit 1cfc3ea

Please sign in to comment.