diff options
author | Ryan Steinmetz <zi@FreeBSD.org> | 2020-09-14 15:48:18 +0000 |
---|---|---|
committer | Ryan Steinmetz <zi@FreeBSD.org> | 2020-09-14 15:48:18 +0000 |
commit | 713b96a4098aa45205716601e71ebacfe5713bc4 (patch) | |
tree | d38e53575cfa4e2689e317e6811ed99a14c3f4ce /net-mgmt/net-snmp/files | |
parent | 4f324cb5a4a45961b6f6470000917908f1f3c67b (diff) |
- Fix PYTHON OPTION
- Require python 3.5+
PR: 249298
Submitted by: John Hein <jcfyecrayz@liamekaens.com>
Notes
Notes:
svn path=/head/; revision=548623
Diffstat (limited to 'net-mgmt/net-snmp/files')
-rw-r--r-- | net-mgmt/net-snmp/files/patch-Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-mgmt/net-snmp/files/patch-Makefile.in b/net-mgmt/net-snmp/files/patch-Makefile.in new file mode 100644 index 000000000000..f52bdf80ad44 --- /dev/null +++ b/net-mgmt/net-snmp/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2020-08-14 21:41:47 UTC ++++ Makefile.in +@@ -235,7 +235,7 @@ pythonmodules: subdirs + fi + + pythoninstall: +- @(dir=`pwd`; cd python; $(PYMAKE) install --basedir=$$dir --root=$(DESTDIR) --prefix=$(prefix)) ; \ ++ @(dir=`pwd`; cd python; $(PYMAKE) install --basedir=$$dir --root=$(DESTDIR) --prefix=$(prefix) ${PYDISTUTILS_INSTALLARGS}); \ + if test $$? != 0 ; then \ + exit 1 ; \ + fi |