Date: Tue, 6 Sep 2016 14:27:29 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421435 - head/net/pacemaker/files Message-ID: <201609061427.u86ERTO0072139@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Tue Sep 6 14:27:29 2016 New Revision: 421435 URL: https://svnweb.freebsd.org/changeset/ports/421435 Log: - Fix build with --disable-silent-rules With verbose build all utilities are called with --help and --version arguments just to show their output. This, however, may fail: PATH=/wrkdirs/usr/ports/net/pacemaker/work/pacemaker-Pacemaker-1.1.14/tools:$PATH /wrkdirs/usr/ports/net/pacemaker/work/pacemaker-Pacemaker-1.1.14/tools/crm_standby --help Error signing on to the CIB service: Socket is not connected Error signing on to the CIB service: Socket is not connected So just remove these calls, they have no use anyway. PR: 212075 Approved by: portmgr blanket Added: head/net/pacemaker/files/patch-Makefile.common (contents, props changed) Added: head/net/pacemaker/files/patch-Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/pacemaker/files/patch-Makefile.common Tue Sep 6 14:27:29 2016 (r421435) @@ -0,0 +1,11 @@ +--- Makefile.common.orig 2016-01-14 21:43:08 UTC ++++ Makefile.common +@@ -38,8 +38,6 @@ endif + + %.8: % $(MAN8DEPS) + chmod a+x $(abs_builddir)/$< +- $(PCMK_V) PATH=$(abs_builddir):$$PATH $(abs_builddir)/$< --help +- $(PCMK_V) PATH=$(abs_builddir):$$PATH $(abs_builddir)/$< --version + $(AM_V_MAN)PATH=$(abs_builddir):$$PATH $(HELP2MAN) --output $@ --no-info --section 8 --name "Part of the Pacemaker cluster resource manager" $(abs_builddir)/$< + + %.xml: %
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609061427.u86ERTO0072139>