svn commit: r390662 - head/devel/deforaos-libsystem

John Marino marino at FreeBSD.org
Fri Jun 26 19:10:11 UTC 2015


Author: marino
Date: Fri Jun 26 19:10:10 2015
New Revision: 390662
URL: https://svnweb.freebsd.org/changeset/ports/390662

Log:
  devel/deforaos-libsystem is not jobs safe
  
  Here the log shows a makefile race where it tries to create the same
  symlink twice:
  
  --- libSystem.so.0 ---
  ln -f -s -- libSystem.so.0.0 libSystem.so.0
  --- libSystem.so ---
  ln -f -s -- libSystem.so.0.0 libSystem.so.0
  --- libSystem.so.0 ---
  ln -f -s -- libSystem.so.0.0 libSystem.so
  --- libSystem.so ---
  ln: libSystem.so.0: File exists

Modified:
  head/devel/deforaos-libsystem/Makefile

Modified: head/devel/deforaos-libsystem/Makefile
==============================================================================
--- head/devel/deforaos-libsystem/Makefile	Fri Jun 26 19:02:45 2015	(r390661)
+++ head/devel/deforaos-libsystem/Makefile	Fri Jun 26 19:10:10 2015	(r390662)
@@ -20,6 +20,8 @@ CPPFLAGS+=	-I${OPENSSLINC}
 LDFLAGS+=	-L${OPENSSLLIB}
 MAKE_ARGS+=	PREFIX=${PREFIX}
 
+MAKE_JOBS_UNSAFE=	yes
+
 OPTIONS_DEFAULT=	DOCS
 
 post-patch:


More information about the svn-ports-all mailing list