Module Name: src
Committed By: haad
Date: Thu Jan 13 23:44:11 UTC 2011
Modified Files:
src/sbin/chown: Makefile
Log Message:
Use SYMLINKS, I'm not sure why I ahve commited old version of my patch, but
it should be ok now. Thanks to tron@ for pointing at this issue.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sbin/chown/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/chown/Makefile
diff -u src/sbin/chown/Makefile:1.5 src/sbin/chown/Makefile:1.6
--- src/sbin/chown/Makefile:1.5 Thu Jan 13 22:28:36 2011
+++ src/sbin/chown/Makefile Thu Jan 13 23:44:11 2011
@@ -1,12 +1,12 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
-# $NetBSD: Makefile,v 1.5 2011/01/13 22:28:36 haad Exp $
+# $NetBSD: Makefile,v 1.6 2011/01/13 23:44:11 haad Exp $
PROG= chown
CPPFLAGS+=-DSUPPORT_DOT
MAN= chgrp.1 chown.8
-LINKS= ${BINDIR}/chown /bin/chgrp
+SYMLINKS+= ${BINDIR}/chown /bin/chgrp
-LINKS+= ${BINDIR}/chown /usr/bin/chgrp
-LINKS+= ${BINDIR}/chown /usr/sbin/chown
+SYMLINKS+= ${BINDIR}/chown /usr/bin/chgrp
+SYMLINKS+= ${BINDIR}/chown /usr/sbin/chown
.include <bsd.prog.mk>