diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-12-03 16:51:49 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-11 02:18:42 +0100 |
commit | 51f3f96498c9cda3386a4bcbaf8e1e4cd107035f (patch) | |
tree | e0ec39356b448796a7c6a15301d128ff23c9dfda /package/busybox/busybox-1.18.0/busybox-1.18.0-buildsys.patch | |
parent | 176afdb3a180e0833d8b0a5085a2745e2b3e2d27 (diff) | |
download | buildroot-novena-51f3f96498c9cda3386a4bcbaf8e1e4cd107035f.tar.gz buildroot-novena-51f3f96498c9cda3386a4bcbaf8e1e4cd107035f.zip |
busybox: add 1.18.0, remove 1.13.x and 1.14.x, mark 1.15.x as deprecated
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.18.0/busybox-1.18.0-buildsys.patch')
-rw-r--r-- | package/busybox/busybox-1.18.0/busybox-1.18.0-buildsys.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.18.0/busybox-1.18.0-buildsys.patch b/package/busybox/busybox-1.18.0/busybox-1.18.0-buildsys.patch new file mode 100644 index 000000000..c72e4d3b5 --- /dev/null +++ b/package/busybox/busybox-1.18.0/busybox-1.18.0-buildsys.patch @@ -0,0 +1,21 @@ +diff -urpN busybox-1.18.0/scripts/gen_build_files.sh busybox-1.18.0-buildsys/scripts/gen_build_files.sh +--- busybox-1.18.0/scripts/gen_build_files.sh 2010-11-22 21:43:22.000000000 +0100 ++++ busybox-1.18.0-buildsys/scripts/gen_build_files.sh 2010-11-24 14:59:47.732712663 +0100 +@@ -18,14 +18,14 @@ generate() + local src="$1" dst="$2" header="$3" insert="$4" + #chk "${dst}" + ( +- echo "${header}" ++ printf "%s\n" "${header}" + if grep -qs '^INSERT$' "${src}"; then + sed -n '1,/^INSERT$/p' "${src}" +- echo "${insert}" ++ printf "%s\n" "${insert}" + sed -n '/^INSERT$/,$p' "${src}" + else + if [ -n "${insert}" ]; then +- echo "ERROR: INSERT line missing in: ${src}" 1>&2 ++ printf "%s\n" "ERROR: INSERT line missing in: ${src}" 1>&2 + fi + cat "${src}" + fi |