From 385271982faeb7cae66a68926255f0c8f3738ec9 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Fri, 26 Apr 2019 17:18:58 -0400 Subject: [PATCH] Don't need to find the grep command after all --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 499af39..9202560 100644 --- a/setup.py +++ b/setup.py @@ -39,15 +39,12 @@ class FileMacroExpand(distutils.cmd.Command): self.sbindir = '/usr/local/sbin' self.bindir = '/usr/local/bin' self.rundir = '/run' - # For this option, we find the system grep, wherever it is and use it, - # no override provided. - self.grep = subprocess.check_output(["which", "grep"]).decode()[:-1] def finalize_options(self): pass def run(self): - files = ['etc/dkimpy-milter.conf', 'etc/dkimpy-milter.openrc', 'man/dkimpy-milter.conf.5'] + files = ['etc/dkimpy-milter.conf', 'man/dkimpy-milter.conf.5', 'system/dkimpy-milter.openrc', ] for infile in files: outfile = '' filein = open(infile + '.in')