From 9a6861e363024fcd00cf86ae0d0fda415c338df3 Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 31 May 2002 05:50:03 +0000 Subject: [PATCH] Make Solaris 8 happy: use ln -f -s instead of ln -fs --- tools/installboot/Makefile | 4 ++-- tools/makefs/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/installboot/Makefile b/tools/installboot/Makefile index d5aa6cf779e0..6902250135f3 100644 --- a/tools/installboot/Makefile +++ b/tools/installboot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2002/04/22 15:18:57 lukem Exp $ +# $NetBSD: Makefile,v 1.6 2002/05/31 05:50:03 matt Exp $ HOSTPROGNAME= nbinstallboot HOST_SRCDIR= usr.sbin/installboot @@ -13,5 +13,5 @@ $(OBJS): ufs.stamp ufs.stamp: -rm -f ufs - ln -fs ${.CURDIR}/../../sys/ufs ufs + ln -f -s ${.CURDIR}/../../sys/ufs ufs @touch $@ diff --git a/tools/makefs/Makefile b/tools/makefs/Makefile index 9576564859e0..28759c53fcbe 100644 --- a/tools/makefs/Makefile +++ b/tools/makefs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2002/03/05 15:08:27 pk Exp $ +# $NetBSD: Makefile,v 1.5 2002/05/31 05:50:03 matt Exp $ HOSTPROGNAME= nbmakefs HOST_SRCDIR= usr.sbin/makefs @@ -13,5 +13,5 @@ $(OBJS): ufs.stamp ufs.stamp: -rm -f ufs - ln -fs ${.CURDIR}/../../sys/ufs ufs + ln -f -s ${.CURDIR}/../../sys/ufs ufs @touch $@