Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2015 14:34:24 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r384838 - head/print/ghostscript7
Message-ID:  <201504271434.t3REYOv8093913@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Mon Apr 27 14:34:24 2015
New Revision: 384838
URL: https://svnweb.freebsd.org/changeset/ports/384838

Log:
  print/ghostscript7: This is not jobs safe
  
  This port is doing some king of crazy delete/copy thing with gconfig.h
  and there's a race where it gets used before it's copied.  Mark this
  port unsafe until further notice; it has failed on me a couple of times.
  
  tailored log:
    rm -f ./obj/../soobj/gconfig.h
    cp ./obj/../soobj/gconfxx.h ./obj/../soobj/gconfig.h
    rm -f ./obj/../soobj/gconfig.h
    cp ./src/gconf.c ./obj/../soobj/gconfig.cOA
    cp ./obj/../soobj/gconfxx.h ./obj/../soobj/gconfig.h
    [snip]
    cp ./obj/../soobj/gconfxx.h ./obj/../soobj/gconfig.h
    In file included from ./obj/../soobj/iconfig.c:43:0:
    ./src/gconf.h:34:23: fatal error: ./obj/../soobj/gconfig.h: No such file
      or directory
    compilation terminated.

Modified:
  head/print/ghostscript7/Makefile

Modified: head/print/ghostscript7/Makefile
==============================================================================
--- head/print/ghostscript7/Makefile	Mon Apr 27 14:32:09 2015	(r384837)
+++ head/print/ghostscript7/Makefile	Mon Apr 27 14:34:24 2015	(r384838)
@@ -51,6 +51,8 @@ LDFLAGS+=	${XLDFLAGS}
 XLDFLAGS=	-lpthread -L${LOCALBASE}/lib -L${WRKSRC}/gimp-print
 PLIST_SUB=	GS_VERSION="${PORTVERSION}"
 
+MAKE_JOBS_UNSAFE=	yes
+
 OPTIONS_DEFINE=	X11 DOCS A4SIZE
 OPTIONS_DEFAULT=X11 DOCS A4SIZE
 NO_OPTIONS_SORT=yes



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