summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2019-01-26 02:44:34 +0000
committergdt <gdt@pkgsrc.org>2019-01-26 02:44:34 +0000
commitd0fbdfe480bebb445f188c3c11f74bf7dda6c80f (patch)
treee06651228237cfed0c2b51d5d49b0d142c2d599e
parent414969ce7ef1ac6fb1f76574438a4e5d1ef3325c (diff)
downloadpkgsrc-d0fbdfe480bebb445f188c3c11f74bf7dda6c80f.tar.gz
avrdude: require GNU make
With BSD make, even though there is no apparent reason, errors occur during the build about libavrdude.a not being present. Even if that is forced as a target, there are -j failures.
-rw-r--r--cross/avrdude/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/cross/avrdude/Makefile b/cross/avrdude/Makefile
index 5651098254b..2e3e6eb605c 100644
--- a/cross/avrdude/Makefile
+++ b/cross/avrdude/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.44 2018/02/27 23:56:08 khorben Exp $
+# $NetBSD: Makefile,v 1.45 2019/01/26 02:44:34 gdt Exp $
DISTNAME= avrdude-6.3
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= cross
MASTER_SITES= http://download.savannah.gnu.org/releases/avrdude/
@@ -14,14 +14,15 @@ BUILD_DEPENDS+= dvipsk-[0-9]*:../../print/dvipsk
BUILD_DEPENDS+= tex-latex-fonts-[0-9]*:../../fonts/tex-latex-fonts
BUILD_DEPENDS+= tex-pdftex-[0-9]*:../../print/tex-pdftex
-# make: make: don't know how to make ./libavrdude.a. Stop
-MAKE_JOBS_SAFE= no
-
.include "../../mk/bsd.prefs.mk"
GNU_CONFIGURE= yes
TEXINFO_REQD= 4.9
-USE_TOOLS+= autoconf automake autoreconf makeinfo texi2html yacc lex
+USE_TOOLS+= autoconf automake autoreconf lex makeinfo texi2html yacc
+# Upstream does not documentat that GNU make is required, but BSD make
+# leads to inexplicable errors about libavrdude.
+# \todo Resolve and/or discuss with upstream.
+USE_TOOLS+= gmake
USE_LIBTOOL= yes
INFO_FILES= yes
EGDIR= ${PREFIX}/share/examples/avrdude