forked from pool/fakeroot
c11b52d788
* Fix build with gcc-14. (Closes: #1074945) * Fix FTBFS on armel, armhf, by undefining the t64 flags in communicate.h Upload to experimental, for additional testing. (Closes: #1065552) * New fix for the previous FTBFS on armel, armhf. Work around glibc headers aliasing symbols we need to redefine. (Closes: #1065552) * Fix ABI mismatch on i386, a 32bit arch _without_ the time_t64 ABI break. * Fix wrappers for fstatat64 et al missing. (Closes: #1078655) Add t.perlstat test. Thanks to Johannes Schauer Marin Rodrigues and Niels Thykier for help with debugging the problem. - Drop fakeroot-C99.patch which has been merged upstream OBS-URL: https://build.opensuse.org/package/show/devel:tools/fakeroot?expand=0&rev=47
14 lines
366 B
Plaintext
14 lines
366 B
Plaintext
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.
|