Module Name: src Committed By: haad Date: Sat Jun 6 08:22:24 UTC 2009
Modified Files: src/sbin/fsdb: Makefile Log Message: Add proplib to list of libraries, ifx fsdb build after my getdiskinfo change. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sbin/fsdb/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/fsdb/Makefile diff -u src/sbin/fsdb/Makefile:1.25 src/sbin/fsdb/Makefile:1.26 --- src/sbin/fsdb/Makefile:1.25 Sat Apr 11 07:58:12 2009 +++ src/sbin/fsdb/Makefile Sat Jun 6 08:22:24 2009 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2009/04/11 07:58:12 lukem Exp $ +# $NetBSD: Makefile,v 1.26 2009/06/06 08:22:24 haad Exp $ # @(#)Makefile 8.1 (Berkeley) 6/5/93 WARNS?= 3 # XXX: sign-compare issues in ../fsck_ffs @@ -22,9 +22,9 @@ .PATH: ${NETBSDSRCDIR}/sys/kern CPPFLAGS+=-DWAPBL_DEBUG_PRINT=0 -LDADD+= -lutil -ledit -ltermcap +LDADD+= -lutil -ledit -ltermcap -lprop .ifndef HOSTPROG -DPADD+= ${LIBUTIL} ${LIBEDIT} ${LIBTERMCAP} +DPADD+= ${LIBUTIL} ${LIBEDIT} ${LIBTERMCAP} ${LIBPROP} .endif .if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)