diff options
author | swills <swills@FreeBSD.org> | 2011-10-12 07:26:23 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2011-10-12 07:26:23 +0800 |
commit | 308a462d4cd2779aded4ee247dfe333bb66f8b0f (patch) | |
tree | f77117026197d8c888c0d005d1145f67239a66d4 /www/mod_pagespeed | |
parent | 08891c708814e2b27f8855ae9fb09b3ed135c6b1 (diff) | |
download | freebsd-ports-gnome-308a462d4cd2779aded4ee247dfe333bb66f8b0f.tar.gz freebsd-ports-gnome-308a462d4cd2779aded4ee247dfe333bb66f8b0f.tar.zst freebsd-ports-gnome-308a462d4cd2779aded4ee247dfe333bb66f8b0f.zip |
- Add patch to force use of greadlink
Reported by: pavmail
Diffstat (limited to 'www/mod_pagespeed')
-rw-r--r-- | www/mod_pagespeed/files/patch-python_arch.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/mod_pagespeed/files/patch-python_arch.sh b/www/mod_pagespeed/files/patch-python_arch.sh new file mode 100644 index 000000000000..acb5b7b6bba6 --- /dev/null +++ b/www/mod_pagespeed/files/patch-python_arch.sh @@ -0,0 +1,11 @@ +--- build/linux/python_arch.sh.orig 2011-09-27 21:20:46.000000000 -0400 ++++ build/linux/python_arch.sh 2011-10-11 19:20:09.472740606 -0400 +@@ -10,7 +10,7 @@ + # python_arch.sh /path/to/sysroot/usr/lib/libpython2.4.so.1.0 + # + +-python=$(readlink -f "$1") ++python=$(greadlink -f "$1") + if [ ! -r "$python" ]; then + echo unknown + exit 0; |