diff options
author | Rene Ladan <rene@FreeBSD.org> | 2011-06-08 18:45:07 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2011-06-08 18:45:07 +0000 |
commit | d2b8ef585ba915bb6429398b7ecd2403f1291b4b (patch) | |
tree | 150cea1011307e17f4d7c3b50cf7a05605d4dd6f /www | |
parent | Upddate 4.2.7p179 --> 4.2.7p181 (diff) |
Re-add a patch to fix a build failure happening under certain circumstances.
PR: ports/157708
Submitted by: Pedro Garcia [sawp sawp.com br]
Obtained from: Chromium development repository (George Liaskos)
Notes
Notes:
svn path=/head/; revision=275248
Diffstat (limited to 'www')
-rw-r--r-- | www/chromium/files/patch-build__linux__python_arch.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www/chromium/files/patch-build__linux__python_arch.sh b/www/chromium/files/patch-build__linux__python_arch.sh new file mode 100644 index 000000000000..f20ad80a4bd1 --- /dev/null +++ b/www/chromium/files/patch-build__linux__python_arch.sh @@ -0,0 +1,16 @@ +--- build/linux/python_arch.sh.orig 2011-06-08 21:00:57.020677627 +0300 ++++ build/linux/python_arch.sh 2011-06-08 21:01:35.203676025 +0300 +@@ -10,12 +10,7 @@ + # python_arch.sh /path/to/sysroot/usr/lib/libpython2.4.so.1.0 + # + +-python=$(readlink -f "$1") +-if [ ! -r "$python" ]; then +- echo unknown +- exit 0 +-fi +-file_out=$(file "$python") ++file_out=$(file "$1") + if [ $? -ne 0 ]; then + echo unknown + exit 0 |