aboutsummaryrefslogtreecommitdiff
path: root/www/mod_pagespeed/files/patch-python_arch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'www/mod_pagespeed/files/patch-python_arch.sh')
-rw-r--r--www/mod_pagespeed/files/patch-python_arch.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/www/mod_pagespeed/files/patch-python_arch.sh b/www/mod_pagespeed/files/patch-python_arch.sh
deleted file mode 100644
index ee59a745ff01..000000000000
--- a/www/mod_pagespeed/files/patch-python_arch.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: build/linux/python_arch.sh
-===================================================================
---- build/linux/python_arch.sh (revision 90205)
-+++ build/linux/python_arch.sh (working copy)
-@@ -10,7 +10,15 @@
- # python_arch.sh /path/to/sysroot/usr/lib/libpython2.4.so.1.0
- #
-
--python=$(readlink -f "$1")
-+UNAME=`uname`
-+
-+# FreeBSD readlink lacks -f support before 9.0
-+if [ ${UNAME} = "FreeBSD" ]; then
-+ python=$(greadlink -f "$1")
-+else
-+ python=$(readlink -f "$1")
-+fi
-+
- if [ ! -r "$python" ]; then
- echo unknown
- exit 0