Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Jun 2010 23:29:01 -0700 (PDT)
From:      Don Lewis <truckman@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        gnome@FreeBSD.org
Subject:   make install can fail for ports-mgmt/packagekit [patch]
Message-ID:  <201006240629.o5O6T1jN006527@mousie.catspoiler.org>

next in thread | raw e-mail | index | archive | help

>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@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 =						\




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