From ec24db94e29e5344121413ffbb1c73e35c207838 Mon Sep 17 00:00:00 2001 From: David Rhodus Date: Tue, 20 Apr 2004 22:00:47 +0000 Subject: [PATCH] Fix an symlink ordering issue that was causing the install of the new less program to fail. Pointed out by: JXrg Anslik --- usr.bin/less/Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/usr.bin/less/Makefile b/usr.bin/less/Makefile index fe6ff57549..13fc12b6e1 100644 --- a/usr.bin/less/Makefile +++ b/usr.bin/less/Makefile @@ -1,9 +1,8 @@ # $FreeBSD: src/usr.bin/less/Makefile,v 1.4.2.5 2003/02/02 10:04:50 johan Exp $ -# $DragonFly: src/usr.bin/less/Makefile,v 1.3 2004/04/20 17:43:33 eirikn Exp $ +# $DragonFly: src/usr.bin/less/Makefile,v 1.4 2004/04/20 22:00:47 drhodus Exp $ PROG= less -SRCS= \ - main.c screen.c brac.c ch.c charset.c cmdbuf.c \ +SRCS= main.c screen.c brac.c ch.c charset.c cmdbuf.c \ command.c decode.c edit.c filename.c forwback.c \ help.c ifile.c input.c jump.c line.c linenum.c \ lsystem.c mark.c optfunc.c option.c opttbl.c os.c \ @@ -12,9 +11,9 @@ SRCS= \ CFLAGS= -I${.CURDIR} -DSYSDIR="/etc" DPADD= ${LIBTERMCAP} LDADD= -ltermcap -LINKS= ${BINDIR}/more ${BINDIR}/less +LINKS= ${BINDIR}/less ${BINDIR}/more MLINKS= more.1 less.1 -CLEANFILES=less.1 +CLEANFILES= less.1 .include .include -- 2.41.0