1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 10:15:12 +03:00
aports/testing/fakeroot-tcp/fix-shell-in-fakeroot.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

13 lines
366 B
Diff

Description: Fix shell in fakeroot.in
Use /bin/sh instead of @SHELL@ in fakeroot.in
Author: Juan Picca <jumapico@gmail.com>
Last-Update: 2016-06-27
---
--- a/scripts/fakeroot.in
+++ b/scripts/fakeroot.in
@@ -1,4 +1,4 @@
-#!@SHELL@
+#!/bin/sh
# This script first starts faked (the daemon), and then it will run
# the requested program with fake root privileges.