summaryrefslogtreecommitdiff
path: root/Packages.txt
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-10-31 04:24:16 +0000
committerjlam <jlam@pkgsrc.org>2001-10-31 04:24:16 +0000
commitb4117503466b386bcb09c9029ba5cf98c3f7889c (patch)
tree5fa4e0a185755cb0834c5467d2b8119cdb67dbaa /Packages.txt
parentb672a3c005a9d0f68061812408a9b908d7506bfc (diff)
downloadpkgsrc-b4117503466b386bcb09c9029ba5cf98c3f7889c.tar.gz
Missing semicolons between commands in automake example.
Diffstat (limited to 'Packages.txt')
-rw-r--r--Packages.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Packages.txt b/Packages.txt
index add3f9ca480..8eefcaca78a 100644
--- a/Packages.txt
+++ b/Packages.txt
@@ -1,4 +1,4 @@
-# $NetBSD: Packages.txt,v 1.207 2001/10/30 17:09:43 drochner Exp $
+# $NetBSD: Packages.txt,v 1.208 2001/10/31 04:24:16 jlam Exp $
###########################################################################
==========================
@@ -1064,10 +1064,10 @@ and for packages that need automake:
pre-configure:
cd ${WRKSRC}; \
- ${LOCALBASE}/bin/aclocal \
- ${LOCALBASE}/bin/autoheader \
- ${LOCALBASE}/bin/automake -a --foreign -i \
- ${LOCALBASE}/bin/autoconf \
+ ${LOCALBASE}/bin/aclocal; \
+ ${LOCALBASE}/bin/autoheader; \
+ ${LOCALBASE}/bin/automake -a --foreign -i; \
+ ${LOCALBASE}/bin/autoconf
There are times when the configure process makes additional changes to the
generated files, which then causes the build process to try to re-execute