Date: Tue, 16 Sep 2014 11:26:48 +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: r368303 - head/x11-fonts/sgifonts Message-ID: <201409161126.s8GBQmKa010207@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Tue Sep 16 11:26:47 2014 New Revision: 368303 URL: http://svnweb.freebsd.org/changeset/ports/368303 QAT: https://qat.redports.org/buildarchive/r368303/ Log: x11-fonts/sgifonts: Use $TAR instead of $EXTRACT_CMD Currently, FreeBSD defines EXTRACT_CMD as $TAR, but DragonFly does not have a default value for EXTRACT_CMD. Using $TAR instead of $EXTRACT_CMD is a No-Op for FreeBSD, but restores the build on DragonFly which got disrupted as a result of the previous commit. Modified: head/x11-fonts/sgifonts/Makefile Modified: head/x11-fonts/sgifonts/Makefile ============================================================================== --- head/x11-fonts/sgifonts/Makefile Tue Sep 16 10:56:13 2014 (r368302) +++ head/x11-fonts/sgifonts/Makefile Tue Sep 16 11:26:47 2014 (r368303) @@ -37,7 +37,7 @@ FONTS= Scr7 Scr8 Scr9 Scr10 Scr11 Scr12 space10 type13 post-extract: - @(cd ${WRKSRC} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ + @(cd ${WRKSRC} && ${TAR} ${EXTRACT_BEFORE_ARGS} \ sgi-fonts.tar.gz ${EXTRACT_AFTER_ARGS}) post-patch:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409161126.s8GBQmKa010207>