diff options
author | yyamano <yyamano> | 2006-03-21 16:31:25 +0000 |
---|---|---|
committer | yyamano <yyamano> | 2006-03-21 16:31:25 +0000 |
commit | f92808250f44d49179d5673d6a9663e5f73ee151 (patch) | |
tree | 674997c59826b037b48ffa7defb45a28c25e35b7 | |
parent | d150e53e11df970c4a1a5cfdc7e91c921913b431 (diff) | |
download | pkgsrc-f92808250f44d49179d5673d6a9663e5f73ee151.tar.gz |
Fix install problem on Darwin.
-rw-r--r-- | time/asclock/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/asclock/Makefile b/time/asclock/Makefile index 9932eb25f9f..976f2229b3a 100644 --- a/time/asclock/Makefile +++ b/time/asclock/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2006/03/04 21:30:52 jlam Exp $ +# $NetBSD: Makefile,v 1.24 2006/03/21 16:31:25 yyamano Exp $ DISTNAME= asclock-classic-1.0 PKGNAME= asclock-1.0 @@ -55,7 +55,7 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/asclock.sh ${PREFIX}/bin/asclock ${INSTALL_PROGRAM} ${WRKSRC}/asclock ${PREFIX}/libexec/asclock-classic ${CAT} ${PKGDIR}/PLIST > ${PLIST_SRC} -.if (${OPSYS} == SunOS) || (${OPSYS} == "Linux") || (${OPSYS} == "Interix") || ${OPSYS} == "DragonFly" +.if (${OPSYS} == SunOS) || (${OPSYS} == "Linux") || (${OPSYS} == "Interix") || ${OPSYS} == "DragonFly" || ${OPSYS} == "Darwin" ${INSTALL_MAN_DIR} ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/asclock.man ${PREFIX}/man/man1/asclock.1 @${ECHO} man/man1/asclock.1 >> ${PLIST_SRC} |