make install can fail for ports-mgmt/packagekit [patch]

Don Lewis truckman at FreeBSD.org
Thu Jun 24 06:54:57 UTC 2010


>Submitter-Id:	current-users
>Originator:	Don Lewis
>Organization:	self
>Confidential:	no
>Synopsis:	make install can fail for ports-mgmt/packagekit [patch]
>Severity:	non-critical
>Priority:	medium
>Category:	ports
>Class:		change-request
>Release:	FreeBSD 8.1-PRERELEASE i386
>Environment:
System: FreeBSD scratch.catspoiler.org 8.1-PRERELEASE FreeBSD 8.1-PRERELEASE #1: Sun Jun 13 00:47:16 PDT 2010     dl at scratch.catspoiler.org:/usr/obj/usr/src/sys/GENERICDDB  i386


>Description:
	Installation of ports-mgmt/packagekit can fail if
	contrib/debuginfo-install/pk-debuginfo-install.1 has not yet
	been created.  This can happen because
	contrib/debuginfo-install/Makefile puts the xsltproc process that
	creates pk-debuginfo-install.1 in the background.  This looks
	like a misplaced C shell attempt to redirect stderr.

>How-To-Repeat:

>Fix:

--- contrib/debuginfo-install/Makefile.am.orig	2010-02-11 03:13:57.000000000 -0800
+++ contrib/debuginfo-install/Makefile.am	2010-06-03 17:58:26.000000000 -0700
@@ -13,7 +13,7 @@
 
 if HAVE_XSLTPROC
 pk-debuginfo-install.1: pk-debuginfo-install.xml
-	xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
+	xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? > /dev/null
 endif
 
 INCLUDES =						\



More information about the freebsd-gnome mailing list