aports/main/fakeroot/xstatjunk.patch
Natanael Copa 3669a29b1a main/fakeroot: upgrade to 1.30.1
test/t.chown uses `chown --reference` which is not supported by busybox
chown, so we add coreutils to checkdepends.

see 4f697211cb
2022-12-30 11:58:17 +00:00

14 lines
572 B
Diff

diff --git a/configure.ac b/configure.ac
index 9613183..e4a9bbc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -385,7 +385,7 @@ for SEARCH in %stat f%stat l%stat f%statat %stat64 f%stat64 l%stat64 f%statat64
FUNC=`echo $SEARCH|sed -e 's/.*%//'`
PRE=`echo $SEARCH|sed -e 's/%.*//'`
FOUND=
- for WRAPPED in __${PRE}x${FUNC} _${PRE}x${FUNC} __${PRE}${FUNC}13 ${PRE}${FUNC} __${PRE}${FUNC}; do
+ for WRAPPED in ${PRE}${FUNC}; do
AC_CHECK_FUNCS($WRAPPED,FOUND=$WRAPPED)
dnl
dnl to unconditionally define only the _* functions, comment out the 2 lines above,