diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-08 00:33:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-08 00:33:10 +0000 |
commit | 3a12bd8bce77242484a572f4ccfa516812096414 (patch) | |
tree | 9d504323e5b8e35a888f64e8867e7fd4292f8735 | |
parent | b06efd636a7b5e804e2f0d427d0438da0a237eda (diff) | |
download | mtk-20170518-3a12bd8bce77242484a572f4ccfa516812096414.zip mtk-20170518-3a12bd8bce77242484a572f4ccfa516812096414.tar.gz mtk-20170518-3a12bd8bce77242484a572f4ccfa516812096414.tar.bz2 |
busybox: use bash for gen_build_files.sh to avoid printf argument list issues on some systems
SVN-Revision: 28849
-rw-r--r-- | package/busybox/patches/141-gen_build_files_bash.patch | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/busybox/patches/141-gen_build_files_bash.patch b/package/busybox/patches/141-gen_build_files_bash.patch new file mode 100644 index 0000000..d258fb8 --- /dev/null +++ b/package/busybox/patches/141-gen_build_files_bash.patch @@ -0,0 +1,8 @@ +--- a/scripts/gen_build_files.sh ++++ b/scripts/gen_build_files.sh +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/usr/bin/env bash + + # Note: was using sed OPTS CMD -- FILES + # but users complain that many sed implementations |