Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Dec 2012 11:18:35 GMT
From:      Garrett Cooper <yanegomi@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   bin/174046: [patch] bsdinstall: add missing DPADD definitions
Message-ID:  <201212021118.qB2BIZHe032662@red.freebsd.org>
Resent-Message-ID: <201212021120.qB2BK0K7050104@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         174046
>Category:       bin
>Synopsis:       [patch] bsdinstall: add missing DPADD definitions
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 02 11:20:00 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Garrett Cooper
>Release:        10-CURRENT
>Organization:
EMC Isilon
>Environment:
FreeBSD bayonetta.local 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r240836M: Sat Sep 22 12:30:11 PDT 2012     gcooper@bayonetta.local:/usr/obj/store/freebsd/stable/9/sys/BAYONETTA  amd64
>Description:
DPADD is missing from the Makefiles for the bsdinstall C applications. The attached patch fixes that.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: usr.sbin/bsdinstall/distextract/Makefile
===================================================================
--- usr.sbin/bsdinstall/distextract/Makefile	(revision 243747)
+++ usr.sbin/bsdinstall/distextract/Makefile	(working copy)
@@ -3,6 +3,7 @@
 BINDIR= /usr/libexec/bsdinstall
 PROG=	distextract
 LDADD=	-larchive -lncursesw -ldialog -lm
+DPADD=	${LIBARCHIVE} ${LIBNCURSESW} ${LIBDIALOG}
 
 WARNS?=	6
 NO_MAN=	true
Index: usr.sbin/bsdinstall/distfetch/Makefile
===================================================================
--- usr.sbin/bsdinstall/distfetch/Makefile	(revision 243747)
+++ usr.sbin/bsdinstall/distfetch/Makefile	(working copy)
@@ -3,6 +3,7 @@
 BINDIR= /usr/libexec/bsdinstall
 PROG=	distfetch
 LDADD=	-lfetch -lncursesw -ldialog -lm
+DPADD=	${LIBFETCH} ${LIBNCURSESW} ${LIBDIALOG}
 
 WARNS?=	6
 NO_MAN=	true
Index: usr.sbin/bsdinstall/partedit/Makefile
===================================================================
--- usr.sbin/bsdinstall/partedit/Makefile	(revision 243747)
+++ usr.sbin/bsdinstall/partedit/Makefile	(working copy)
@@ -4,6 +4,7 @@
 PROG=	partedit
 LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
 LDADD=	-lgeom -lncursesw -lutil -ldialog -lm
+DPADD=	${LIBGEOM} ${LIBNCURSESW} ${LIBDIALOG}
 
 PARTEDIT_ARCH= ${MACHINE}
 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"


>Release-Note:
>Audit-Trail:
>Unformatted:



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