1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/testing/fakeroot-tcp/xstatjunk.patch
Raymond Page 425f2d6f8a testing/fakeroot-tcp: new aport
https://packages.debian.org/fakeroot
Gives a fake root environment, useful for building packages as a non-privileged user

This package is identical to fakeroot adding configure --with-ipc=tcp.
It provides 'fakeroot' on systems without sysvipc message queues, such as WSL1.
2020-06-17 21:44:43 +00:00

11 lines
509 B
Diff

--- fakeroot-1.18.4.orig/configure.ac 2012-06-02 18:23:41.000000000 +0000
+++ fakeroot-1.18.4configure.ac 2015-09-24 23:15:56.917470073 +0000
@@ -301,7 +301,7 @@
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}; 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,