diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-05-12 22:40:21 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-05-12 22:40:21 +0800 |
commit | b39aa7a87965824d1d6d442bf3a2d0f2da36fafe (patch) | |
tree | 3f3b6d9a7baf1e26f3daee8fca34ecf652b9278e | |
parent | d24732629cdbea28c7c4a3fd4e24de5baf3c9bb9 (diff) | |
download | marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.tar marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.tar.gz marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.tar.bz2 marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.tar.lz marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.tar.xz marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.tar.zst marcuscom-ports-b39aa7a87965824d1d6d442bf3a2d0f2da36fafe.zip |
Mark JOBS safe.
We need python -2.7 to build. Add patch to to make sure we call python2
because bin/python might be python3.
Submitted by: eadler@
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18456 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | devel/libsoup/Makefile | 2 | ||||
-rw-r--r-- | devel/libsoup/files/patch-libsoup_tld-parser.py | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/devel/libsoup/Makefile b/devel/libsoup/Makefile index 16e71c54f..cc7d50b6c 100644 --- a/devel/libsoup/Makefile +++ b/devel/libsoup/Makefile @@ -26,6 +26,8 @@ USE_SQLITE= 3 USE_LDCONFIG= yes USE_AUTOTOOLS= libtool USE_GMAKE= yes +MAKE_JOBS_SAFE= yes +USE_PYTHON_BUILD= -2.7 CONFIGURE_ARGS= --disable-more-warnings CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/devel/libsoup/files/patch-libsoup_tld-parser.py b/devel/libsoup/files/patch-libsoup_tld-parser.py new file mode 100644 index 000000000..5c2724dd1 --- /dev/null +++ b/devel/libsoup/files/patch-libsoup_tld-parser.py @@ -0,0 +1,8 @@ +--- libsoup/tld-parser.py.orig 2013-05-12 13:59:58.000000000 +0000 ++++ libsoup/tld-parser.py 2013-05-12 14:00:36.000000000 +0000 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2 + + # Generate tld rules + # Copyright (C) 2012 Red Hat, Inc. |