diff options
author | wiz <wiz@pkgsrc.org> | 2003-04-22 20:25:08 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-04-22 20:25:08 +0000 |
commit | b723d540991b7ac25fdb758651ab4ac60f46b317 (patch) | |
tree | cc30a6a197941020ede32570c63564e084043a02 /devel | |
parent | ccf9c0e3981e2b6f64c942cdb8a4abe9cf314629 (diff) | |
download | pkgsrc-b723d540991b7ac25fdb758651ab4ac60f46b317.tar.gz |
Use ${LN} -sf to create symlinks.
Closes PR 21263 by Jeremy C. Reed.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/gmake/Makefile | 4 | ||||
-rw-r--r-- | devel/m4/Makefile | 4 | ||||
-rw-r--r-- | devel/patch/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/devel/gmake/Makefile b/devel/gmake/Makefile index 8534b44a6f1..926877aa3b8 100644 --- a/devel/gmake/Makefile +++ b/devel/gmake/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2003/02/21 12:40:54 grant Exp $ +# $NetBSD: Makefile,v 1.44 2003/04/22 20:25:10 wiz Exp $ DISTNAME= make-3.80 PKGNAME= gmake-3.80 @@ -34,7 +34,7 @@ post-install: ${CHMOD} g-s ${PREFIX}/bin/${GNU_PROGRAM_PREFIX}make ${CHGRP} ${BINGRP} ${PREFIX}/bin/${GNU_PROGRAM_PREFIX}make .if !defined(GNU_PROGRAM_PREFIX) || ${GNU_PROGRAM_PREFIX} != "g" - ${LN} -s ${GNU_PROGRAM_PREFIX}make ${PREFIX}/bin/gmake + ${LN} -sf ${GNU_PROGRAM_PREFIX}make ${PREFIX}/bin/gmake .endif # NOTE: the 'test' target requires perl, but since gmake does diff --git a/devel/m4/Makefile b/devel/m4/Makefile index 47336d0b913..97be604c2ab 100644 --- a/devel/m4/Makefile +++ b/devel/m4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2002/12/23 20:08:50 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2003/04/22 20:25:09 wiz Exp $ # DISTNAME= m4-1.4 @@ -35,7 +35,7 @@ post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/m4 ${INSTALL_DATA} ${WRKSRC}/examples/*.m4 ${PREFIX}/share/examples/m4 .if !defined(GNU_PROGRAM_PREFIX) || ${GNU_PROGRAM_PREFIX} != "g" - ${LN} -s ${GNU_PROGRAM_PREFIX}m4 ${PREFIX}/bin/gm4 + ${LN} -sf ${GNU_PROGRAM_PREFIX}m4 ${PREFIX}/bin/gm4 .endif .include "../../mk/texinfo.mk" diff --git a/devel/patch/Makefile b/devel/patch/Makefile index 3ef45eb3c8a..8f3358908ce 100644 --- a/devel/patch/Makefile +++ b/devel/patch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2003/01/07 10:55:51 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2003/04/22 20:25:09 wiz Exp $ # DISTNAME= patch-2.5.4 @@ -37,7 +37,7 @@ do-patch: .if !defined(GNU_PROGRAM_PREFIX) || ${GNU_PROGRAM_PREFIX} != "g" post-install: - ${LN} -s ${GNU_PROGRAM_PREFIX}patch ${PREFIX}/bin/gpatch + ${LN} -sf ${GNU_PROGRAM_PREFIX}patch ${PREFIX}/bin/gpatch .endif .include "../../mk/bsd.pkg.mk" |