summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch')
-rw-r--r--games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch b/games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch
deleted file mode 100644
index 1bd3f9f399dc..000000000000
--- a/games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Fix build without native symlinks
-https://bugs.gentoo.org/744424
-
---- a/configure
-+++ b/configure
-@@ -1026,9 +1026,9 @@ void _ebcdic() { char* s = (char*) ebcdi
- int main() { _ascii (); _ebcdic (); return 0; }
- EOF
- $CXX $CXXFLAGS -c -o $TMPO.o tmp_endianness_check.cpp
--if strings $TMPO.o | grep BIGenDianSyS >/dev/null; then
-+if ${STRINGS} $TMPO.o | grep BIGenDianSyS >/dev/null; then
- _endian=big
--elif strings $TMPO.o | grep LiTTleEnDian >/dev/null; then
-+elif ${STRINGS} $TMPO.o | grep LiTTleEnDian >/dev/null; then
- _endian=little
- fi
- echo $_endian;