[Glibc-bsd-commits] r6089 - in trunk/freebsd-buildutils/debian: . patches
stevenc-guest at alioth.debian.org
stevenc-guest at alioth.debian.org
Tue Jul 19 08:31:43 UTC 2016
Author: stevenc-guest
Date: 2016-07-19 08:31:43 +0000 (Tue, 19 Jul 2016)
New Revision: 6089
Added:
trunk/freebsd-buildutils/debian/patches/ar_command_lines.diff
Modified:
trunk/freebsd-buildutils/debian/changelog
trunk/freebsd-buildutils/debian/patches/series
Log:
Make `ar` command lines visible in the build log
Modified: trunk/freebsd-buildutils/debian/changelog
===================================================================
--- trunk/freebsd-buildutils/debian/changelog 2016-07-19 08:29:00 UTC (rev 6088)
+++ trunk/freebsd-buildutils/debian/changelog 2016-07-19 08:31:43 UTC (rev 6089)
@@ -1,6 +1,7 @@
freebsd-buildutils (10.3~svn296373-3) UNRELEASED; urgency=medium
* Update my email address in Uploaders
+ * Make `ar` command lines visible in the build log
-- Steven Chamberlain <stevenc at debian.org> Tue, 19 Jul 2016 09:08:38 +0100
Added: trunk/freebsd-buildutils/debian/patches/ar_command_lines.diff
===================================================================
--- trunk/freebsd-buildutils/debian/patches/ar_command_lines.diff (rev 0)
+++ trunk/freebsd-buildutils/debian/patches/ar_command_lines.diff 2016-07-19 08:31:43 UTC (rev 6089)
@@ -0,0 +1,33 @@
+Date: Tue, 19 Jul 2016 09:06:50 +0100
+From: Steven Chamberlain <stevenc at debian.org>
+Subject: make ar command lines visible in build log
+
+--- a/src/share/mk/bsd.lib.mk
++++ b/src/share/mk/bsd.lib.mk
+@@ -175,7 +175,7 @@
+ lib${LIB}.a: ${OBJS} ${STATICOBJS}
+ @${ECHO} building static ${LIB} library
+ @rm -f ${.TARGET}
+- @${AR} ${ARFLAGS} ${.TARGET} `NM='${NM}' lorder ${OBJS} ${STATICOBJS} | tsort` ${ARADD}
++ ${AR} ${ARFLAGS} ${.TARGET} `NM='${NM}' lorder ${OBJS} ${STATICOBJS} | tsort` ${ARADD}
+ ${RANLIB} ${RANLIBFLAGS} ${.TARGET}
+ .endif
+
+@@ -188,7 +188,7 @@
+ lib${LIB}_p.a: ${POBJS}
+ @${ECHO} building profiled ${LIB} library
+ @rm -f ${.TARGET}
+- @${AR} ${ARFLAGS} ${.TARGET} `NM='${NM}' lorder ${POBJS} | tsort` ${ARADD}
++ ${AR} ${ARFLAGS} ${.TARGET} `NM='${NM}' lorder ${POBJS} | tsort` ${ARADD}
+ ${RANLIB} ${RANLIBFLAGS} ${.TARGET}
+ .endif
+
+@@ -239,7 +239,7 @@
+ lib${LIB}_pic.a: ${SOBJS}
+ @${ECHO} building special pic ${LIB} library
+ @rm -f ${.TARGET}
+- @${AR} ${ARFLAGS} ${.TARGET} ${SOBJS} ${ARADD}
++ ${AR} ${ARFLAGS} ${.TARGET} ${SOBJS} ${ARADD}
+ ${RANLIB} ${RANLIBFLAGS} ${.TARGET}
+ .endif
+
Modified: trunk/freebsd-buildutils/debian/patches/series
===================================================================
--- trunk/freebsd-buildutils/debian/patches/series 2016-07-19 08:29:00 UTC (rev 6088)
+++ trunk/freebsd-buildutils/debian/patches/series 2016-07-19 08:31:43 UTC (rev 6089)
@@ -30,3 +30,4 @@
#test
hppa.diff
man_symlinks.diff
+ar_command_lines.diff
More information about the Glibc-bsd-commits
mailing list