https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192731
Bug ID: 192731
Summary: [patch] [build] typo in
lib/libatf/libatf-c++/Makefile; LIBATFC should be
LIBATF_C
Product: Base System
Version: 11.0-CURRENT
Hardware: Any
OS: Any
Status: Needs Triage
Severity: Affects Only Me
Priority: ---
Component: conf
Assignee: [email protected]
Reporter: [email protected]
Before the fix:
# (cd lib/atf/libatf-c++/; set -x; make -VDPADD; make -VLDADD)
+ make -VDPADD
+ make -VLDADD
-latf-c
After the fix:
# git diff lib/atf/libatf-c++/Makefile
diff --git a/lib/atf/libatf-c++/Makefile b/lib/atf/libatf-c++/Makefile
index 163f7fb..a7a8d91 100644
--- a/lib/atf/libatf-c++/Makefile
+++ b/lib/atf/libatf-c++/Makefile
@@ -33,7 +33,7 @@ PRIVATELIB= true
SHLIB_MAJOR= 1
# libatf-c++ depends on the C version of the ATF library to build.
-DPADD= ${LIBATFC}
+DPADD= ${LIBATF_C}
LDADD= -latf-c
LDFLAGS+= -L${.OBJDIR}/../libatf-c
# (cd lib/atf/libatf-c++/; set -x; make -VDPADD; make -VLDADD)
+ make -VDPADD
/usr/obj/usr/src/lib/atf/libatf-c/libatf-c.a
+ make -VLDADD
-latf-c
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"