diff options
author | tv <tv@pkgsrc.org> | 2007-01-05 13:41:21 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2007-01-05 13:41:21 +0000 |
commit | 5d95012156cbb6810095955788319422544a337a (patch) | |
tree | 06ca7547328d5a500ea09bf4ee2d31ed39dd682d /math | |
parent | ee6f9d93e42051233361f131fcb654a5c7aac254 (diff) | |
download | pkgsrc-5d95012156cbb6810095955788319422544a337a.tar.gz |
This build process is just plain evil. In any case, don't throw away a
failure code with ';' in a chain of shell commands; use '&&' instead.
Diffstat (limited to 'math')
-rw-r--r-- | math/p5-Math-Pari/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/p5-Math-Pari/Makefile b/math/p5-Math-Pari/Makefile index 0e62e2949d3..4184f054902 100644 --- a/math/p5-Math-Pari/Makefile +++ b/math/p5-Math-Pari/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2006/03/04 21:30:06 jlam Exp $ +# $NetBSD: Makefile,v 1.26 2007/01/05 13:41:21 tv Exp $ # DISTNAME= Math-Pari-2.010703 @@ -24,7 +24,7 @@ WRKSRC.pari_cmd= \ cd ${PKGSRCDIR.pari} && ${MAKE} show-var VARNAME=WRKSRC post-extract: - cd ${PKGSRCDIR.pari:Q} && ${MAKE} configure; \ + cd ${PKGSRCDIR.pari:Q} && ${MAKE} configure && \ ${RM} -f ${WRKSRC}/pari-* ${LN} -sf ${WRKSRC.pari_cmd:sh:Q} ${WRKSRC} |