Commit eb4ffb7b authored by Łukasz Nowak's avatar Łukasz Nowak

- hooks required to compile stunnel


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39611 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 38eb0ca3
import os
def pre_configure_hook(options, buildout):
# remove certificate generation
# based on Gentoo: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.33.ebuild
name = os.path.join('tools','Makefile.in')
f = file(name, 'r')
d = f.read().replace('install-data-local:', 'do-not-run-this:')
f.close()
file(name, 'w').write(d)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment