Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Aug 2014 05:45:12 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 192731] New: [patch] [build] typo in lib/libatf/libatf-c++/Makefile; LIBATFC should be LIBATF_C
Message-ID:  <bug-192731-8@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
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: freebsd-bugs@FreeBSD.org
          Reporter: yaneurabeya@gmail.com

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.



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