diff options
author | cjep <cjep> | 2002-12-23 22:18:24 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-12-23 22:18:24 +0000 |
commit | 132f7e47e6967b7458641e4206cda5c0fdb635fd (patch) | |
tree | 2e20e93db8e45e6c5a3fab67267eb72d25875195 | |
parent | 9a5f1cb8b90c5b6392616f3e14601e31e4e233c6 (diff) | |
download | pkgsrc-132f7e47e6967b7458641e4206cda5c0fdb635fd.tar.gz |
Remove pointless brackets.
-rw-r--r-- | math/gp-grape/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/gp-grape/Makefile b/math/gp-grape/Makefile index bc6ed986151..124d88ceac5 100644 --- a/math/gp-grape/Makefile +++ b/math/gp-grape/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2002/12/23 02:02:08 cjep Exp $ +# $NetBSD: Makefile,v 1.4 2002/12/23 22:18:24 cjep Exp $ # DISTNAME= grape4r1 @@ -18,7 +18,7 @@ ALL_TARGET= bsd-gcc GAP_PKG_NAME= grape do-configure: - (cd ${WRKSRC} && ${SH} configure ${GAP_DIRECTORY} ) + cd ${WRKSRC} && ${SH} configure ${GAP_DIRECTORY} do-install: ${INSTALL_PROGRAM_DIR} ${GAP_PKG_DIRECTORY} |