Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 May 2013 13:46:06 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r250511 - in head: usr.bin/gcore usr.sbin/bsdinstall/distextract usr.sbin/bsdinstall/distfetch usr.sbin/bsdinstall/partedit
Message-ID:  <201305111346.r4BDk6ff005271@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305111346.r4BDk6ff005271>