diff options
author | mbw <mbw> | 2000-04-24 04:17:38 +0000 |
---|---|---|
committer | mbw <mbw> | 2000-04-24 04:17:38 +0000 |
commit | 9e53b1a727b234a8b8de921fc44b40dce586a66e (patch) | |
tree | 527324fcf8b772145170f803c7a37b8a4139e06f /lang/hugs | |
parent | 399e5180390bc35149d9e8d563751b7076227164 (diff) | |
download | pkgsrc-9e53b1a727b234a8b8de921fc44b40dce586a66e.tar.gz |
configure was missing a ./ and wasn't finding the configure script
Diffstat (limited to 'lang/hugs')
-rw-r--r-- | lang/hugs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/hugs/Makefile b/lang/hugs/Makefile index a9c643a6c61..0b0dadd1f98 100644 --- a/lang/hugs/Makefile +++ b/lang/hugs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2000/03/27 08:54:57 tron Exp $ +# $NetBSD: Makefile,v 1.11 2000/04/24 04:17:38 mbw Exp $ DISTNAME= Hugs98-May1999 PKGNAME= Hugs98-199905 @@ -19,7 +19,7 @@ MAKE_ENV= INSTALL="${INSTALL}" INSTALL_DATA="${INSTALL_DATA}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" do-configure: - cd ${WRKSRC}; (cd unix; ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) + cd ${WRKSRC}; (cd unix; ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) post-install: ${INSTALL_DATA} ${WRKSRC}/../docs/hugs.1 ${PREFIX}/man/man1/hugs.1 |