diff options
author | dsainty <dsainty> | 2014-06-13 03:41:46 +0000 |
---|---|---|
committer | dsainty <dsainty> | 2014-06-13 03:41:46 +0000 |
commit | 837d0c41c5c61da350308f10b424119a66cd0a34 (patch) | |
tree | e746b25db40d7395ce5bbf84af6eb69820eb60e5 /emulators | |
parent | ca6d7a452cd3e1764a8e8afef8229e94776d3a3c (diff) | |
download | pkgsrc-837d0c41c5c61da350308f10b424119a66cd0a34.tar.gz |
If TeX is installed it is used to build a PDF. Since we don't install the
PDF, there's no point in building it, so disable TeX auto-detection.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/simulavr/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emulators/simulavr/Makefile b/emulators/simulavr/Makefile index 6bac4717980..0bb12e95a6d 100644 --- a/emulators/simulavr/Makefile +++ b/emulators/simulavr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2014/02/22 03:26:53 mef Exp $ +# $NetBSD: Makefile,v 1.23 2014/06/13 03:41:46 dsainty Exp $ # DISTNAME= simulavr-1.0.0 PKGREVISION= 1 @@ -16,6 +16,8 @@ BUILD_DEPENDS+= avr-libc-[0-9]*:../../cross/avr-libc CONFIGURE_ARGS+= --disable-tests CONFIGURE_ARGS+= --enable-python=python${PYVERSSUFFIX} CONFIGURE_ARGS+= --with-bfd=${PREFIX}/avr +CONFIGURE_ENV+= TEX=no + # Following line does not work yet (examples/python directory) #CONFIGURE_ENV+= az_python_use=true #MAKE_ENV+= az_python_use=true |