diff options
author | dholland <dholland@pkgsrc.org> | 2013-11-11 06:53:59 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2013-11-11 06:53:59 +0000 |
commit | f3852e0ed9171014afb53fcef9095797afe98f5a (patch) | |
tree | 2f9a350f44e581fd2f403b592dbd5bf41baaab44 /mail | |
parent | d80ba6019c7bdf4dfb026b8d39099183b0236f58 (diff) | |
download | pkgsrc-f3852e0ed9171014afb53fcef9095797afe98f5a.tar.gz |
Fix MAKE_JOBS build.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mairix/distinfo | 3 | ||||
-rw-r--r-- | mail/mairix/patches/patch-dfasyn_Makefile | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/mail/mairix/distinfo b/mail/mairix/distinfo index e6d44984948..cd0439a4fc6 100644 --- a/mail/mairix/distinfo +++ b/mail/mairix/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2007/12/02 12:56:08 tonio Exp $ +$NetBSD: distinfo,v 1.6 2013/11/11 06:53:59 dholland Exp $ SHA1 (mairix-0.21.tar.gz) = a5f4767462d3f86950acaa0dafd132de0e0d0c43 RMD160 (mairix-0.21.tar.gz) = 68e9d0cf509c8524aa9e2f519b4385fd198f996a Size (mairix-0.21.tar.gz) = 159089 bytes SHA1 (patch-aa) = bc87571018a2470b09dd7f096794439ba8244025 +SHA1 (patch-dfasyn_Makefile) = 6788d8e793e05c3ee078d8471a69adaffe4cb1b3 diff --git a/mail/mairix/patches/patch-dfasyn_Makefile b/mail/mairix/patches/patch-dfasyn_Makefile new file mode 100644 index 00000000000..e1195c8f01a --- /dev/null +++ b/mail/mairix/patches/patch-dfasyn_Makefile @@ -0,0 +1,16 @@ +$NetBSD: patch-dfasyn_Makefile,v 1.1 2013/11/11 06:53:59 dholland Exp $ + +Fix MAKE_JOBS build; without this hack it runs two concurrent copies +of bison that produce garbage output. + +--- dfasyn/Makefile~ 2007-06-22 20:18:00.000000000 +0000 ++++ dfasyn/Makefile +@@ -32,7 +32,7 @@ OBJ = dfasyn.o parse.o scan.o \ + n2d.o expr.o evaluator.o \ + tabcompr.o compdfa.o + +-all : dfasyn ++all : parse.h .WAIT dfasyn + + install : all + [ -d $(bindir) ] || mkdir -p $(bindir) |