Rewrite a "!=" command to avoid using sed.

This commit is contained in:
apb 2008-10-25 22:10:39 +00:00
parent a5a4dddeb3
commit 2f23c0edc4

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2008/05/03 14:48:31 lukem Exp $
# $NetBSD: Makefile,v 1.3 2008/10/25 22:10:39 apb Exp $
LIBISPRIVATE= yes
@ -9,6 +9,6 @@ LIB= diff
DIST= ${IDIST}/${LIB}
.PATH: ${DIST}
SRCS != echo ${DIST}/*.c | sed -e s,${DIST}/,,g
SRCS != (cd ${DIST} && echo *.c)
.include <bsd.lib.mk>