diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-01-01 20:19:24 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-01-01 20:19:24 +0000 |
commit | 06a414bd3c0e8d665f94464a4f828cfac8556862 (patch) | |
tree | 7f90ff52a2af1a95a3ec0c93e8c695ef1fbd9f5d /package/busybox/patches | |
parent | d39e136bbc67e5ff71f3b460ca530b149dc2b5f1 (diff) | |
download | upstream-06a414bd3c0e8d665f94464a4f828cfac8556862.tar.gz upstream-06a414bd3c0e8d665f94464a4f828cfac8556862.tar.bz2 upstream-06a414bd3c0e8d665f94464a4f828cfac8556862.zip |
fix busybox linking when /bin/sh is not bash (closes: #1115)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5954 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches')
-rw-r--r-- | package/busybox/patches/130-trylink_bash.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/busybox/patches/130-trylink_bash.patch b/package/busybox/patches/130-trylink_bash.patch new file mode 100644 index 0000000000..7d29171623 --- /dev/null +++ b/package/busybox/patches/130-trylink_bash.patch @@ -0,0 +1,9 @@ +diff -ruN busybox-1.3.1-old/scripts/trylink busybox-1.3.1-new/scripts/trylink +--- busybox-1.3.1-old/scripts/trylink 2006-12-27 05:53:24.000000000 +0100 ++++ busybox-1.3.1-new/scripts/trylink 2007-01-01 21:01:08.000000000 +0100 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/bin/bash + + debug=false + |