mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
- add fixes for CVE-2016-2037, integer overflow and inconsistent argument passing to printf-like functions, all from upstream. - add autoconf to checkdepends as autom4te is required to create built-in tests from templates; - remove bash from checkdepends (as it is useless without passing CONFIG_SHELL=/bin/bash to ./configure anyway) and replace the bash-style sequence expression at tests/symlink-long.at:30 to resolve test failure; - disable NLS and make explicit other default ./configure options.
11 lines
230 B
Diff
11 lines
230 B
Diff
--- a/tests/symlink-long.at
|
|
+++ b/tests/symlink-long.at
|
|
@@ -27,7 +27,7 @@
|
|
|
|
# len(dirname) > READBUFSIZE
|
|
dirname=
|
|
-for i in {1..52}; do
|
|
+for i in $(seq -s \ 52); do
|
|
dirname="xxxxxxxxx/$dirname"
|
|
mkdir "$dirname"
|
|
done
|