diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-21 12:19:29 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-21 12:19:29 (EST) |
commit | a9847db2a850da9ff7bfd9d531b4fdd1d12a66cb (patch) | |
tree | 5e1fa7ccb73e0fde7fde39a622536552b17c76ff | |
parent | 766fa8a3931f12a5746a10edd12b12d0f33411ee (diff) |
Drop old patch
-rw-r--r-- | patches/01_fix-tests-output.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/patches/01_fix-tests-output.patch b/patches/01_fix-tests-output.patch deleted file mode 100644 index 120b9a8..0000000 --- a/patches/01_fix-tests-output.patch +++ /dev/null @@ -1,33 +0,0 @@ -Author: "P. J. McDermott" <pj@pehjota.net> -Subject: Fix tests output - -ProteanOS's BusyBox is built without support for echo's -n option, so this -happens: - - if [ 'xamd64-linux-glibc' = 'xamd64-linux-glibc' ]; then \ - oh-autotest; \ - fi - make[1]: Entering directory `/usr/src/pkgconf_0.9.6-1/tmp/src' - /bin/sh tests/run.sh ./pkgconf - -n . - -n . - -n . - [...] - -n . - -n . - - 83 tests done. All succeeded. - make[1]: Leaving directory `/usr/src/pkgconf_0.9.6-1/tmp/src' - -diff -Naur src.orig/tests/run.sh.in src/tests/run.sh.in ---- src.orig/tests/run.sh.in 2014-06-07 16:32:08.000000000 -0400 -+++ src/tests/run.sh.in 2014-06-14 02:12:18.663272084 -0400 -@@ -34,7 +34,7 @@ - done - - if [ ${t_ret} -eq 0 ]; then -- echo -n "." -+ printf "." - else - failed=$(( failed + 1 )) - fi |