svn commit: r250511 - in head: usr.bin/gcore usr.sbin/bsdinstall/distextract usr.sbin/bsdinstall/distfetch usr.sbin/bsdinstall/partedit
Antoine Brodin
antoine at FreeBSD.org
Sat May 11 13:46:07 UTC 2013
Author: antoine
Date: Sat May 11 13:46:05 2013
New Revision: 250511
URL: http://svnweb.freebsd.org/changeset/base/250511
Log:
Add some missing DPADD.
Modified:
head/usr.bin/gcore/Makefile
head/usr.sbin/bsdinstall/distextract/Makefile
head/usr.sbin/bsdinstall/distfetch/Makefile
head/usr.sbin/bsdinstall/partedit/Makefile
Modified: head/usr.bin/gcore/Makefile
==============================================================================
--- head/usr.bin/gcore/Makefile Sat May 11 13:44:11 2013 (r250510)
+++ head/usr.bin/gcore/Makefile Sat May 11 13:46:05 2013 (r250511)
@@ -3,7 +3,7 @@
PROG= gcore
SRCS= elfcore.c gcore.c
-DPADD= ${LIBUTIL}
+DPADD= ${LIBSBUF} ${LIBUTIL}
LDADD= -lsbuf -lutil
WARNS?= 1
Modified: head/usr.sbin/bsdinstall/distextract/Makefile
==============================================================================
--- head/usr.sbin/bsdinstall/distextract/Makefile Sat May 11 13:44:11 2013 (r250510)
+++ head/usr.sbin/bsdinstall/distextract/Makefile Sat May 11 13:46:05 2013 (r250511)
@@ -2,6 +2,7 @@
BINDIR= /usr/libexec/bsdinstall
PROG= distextract
+DPADD= ${LIBARCHIVE} ${LIBNCURSESW} ${LIBDIALOG} ${LIBM}
LDADD= -larchive -lncursesw -ldialog -lm
WARNS?= 6
Modified: head/usr.sbin/bsdinstall/distfetch/Makefile
==============================================================================
--- head/usr.sbin/bsdinstall/distfetch/Makefile Sat May 11 13:44:11 2013 (r250510)
+++ head/usr.sbin/bsdinstall/distfetch/Makefile Sat May 11 13:46:05 2013 (r250511)
@@ -2,6 +2,7 @@
BINDIR= /usr/libexec/bsdinstall
PROG= distfetch
+DPADD= ${LIBFETCH} ${LIBNCURSESW} ${LIBDIALOG} ${LIBM}
LDADD= -lfetch -lncursesw -ldialog -lm
WARNS?= 6
Modified: head/usr.sbin/bsdinstall/partedit/Makefile
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/Makefile Sat May 11 13:44:11 2013 (r250510)
+++ head/usr.sbin/bsdinstall/partedit/Makefile Sat May 11 13:46:05 2013 (r250511)
@@ -5,6 +5,7 @@ PROG= partedit
LINKS= ${BINDIR}/partedit ${BINDIR}/autopart \
${BINDIR}/partedit ${BINDIR}/scriptedpart
SYMLINKS= ${BINDIR}/partedit /usr/sbin/sade
+DPADD= ${LIBGEOM} ${LIBNCURSESW} ${LIBUTIL} ${LIBDIALOG} ${LIBM}
LDADD= -lgeom -lncursesw -lutil -ldialog -lm
PARTEDIT_ARCH= ${MACHINE}
More information about the svn-src-all
mailing list