summaryrefslogtreecommitdiff
path: root/print/tex-bagpipetex
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2012-12-24 05:17:51 +0000
committerdholland <dholland@pkgsrc.org>2012-12-24 05:17:51 +0000
commit76c3b742a6d2805236af0b3bf1ee02b982e20f3b (patch)
treea3d8035096faac4daf683b1fbec9358433a6bd10 /print/tex-bagpipetex
parent19547c10445a5f9face315d4edf9b4f9762ce9b3 (diff)
downloadpkgsrc-76c3b742a6d2805236af0b3bf1ee02b982e20f3b.tar.gz
Don't ignore errors when building. This finally reveals what the build
problem really is: "File not found: quickref.mx1"
Diffstat (limited to 'print/tex-bagpipetex')
-rw-r--r--print/tex-bagpipetex/Makefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/print/tex-bagpipetex/Makefile b/print/tex-bagpipetex/Makefile
index 0b8c7af5620..6c98ab5fe81 100644
--- a/print/tex-bagpipetex/Makefile
+++ b/print/tex-bagpipetex/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2012/10/08 13:45:47 asau Exp $
+# $NetBSD: Makefile,v 1.14 2012/12/24 05:17:51 dholland Exp $
#
DISTNAME= bagpipetex-3.01
@@ -53,13 +53,12 @@ do-install:
${DESTDIR}${PREFIX}/share/texmf/tex/latex/bagpipetex
do-build:
- cd ${WRKDIR} ; \
- tex bagdoc ; \
- dvips bagdoc.dvi -o bagdoc.ps ; \
- musixtex quickref ; \
- musixflx quickref ; \
- musixtex quickref ; \
- dvips quickref.dvi -o quickref.ps
+ cd ${WRKDIR} && tex bagdoc
+ cd ${WRKDIR} && dvips bagdoc.dvi -o bagdoc.ps
+ cd ${WRKDIR} && musixtex quickref
+ cd ${WRKDIR} && musixflx quickref
+ cd ${WRKDIR} && musixtex quickref
+ cd ${WRKDIR} && dvips quickref.dvi -o quickref.ps
.include "../../print/kpathsea/texmf.mk"
.include "../../mk/bsd.pkg.mk"