diff options
author | marino <marino@FreeBSD.org> | 2014-09-16 19:26:47 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-09-16 19:26:47 +0800 |
commit | 8ff67ee18a3c92f8142c72b1808842dbc78d1b27 (patch) | |
tree | 6b8bb9f475711bd04b8bb81d11d32d10d72cae0a /x11-fonts | |
parent | dd8778c7132a33987e6eb12b8d56c3268e9b2947 (diff) | |
download | freebsd-ports-gnome-8ff67ee18a3c92f8142c72b1808842dbc78d1b27.tar.gz freebsd-ports-gnome-8ff67ee18a3c92f8142c72b1808842dbc78d1b27.tar.zst freebsd-ports-gnome-8ff67ee18a3c92f8142c72b1808842dbc78d1b27.zip |
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.
Diffstat (limited to 'x11-fonts')
-rw-r--r-- | x11-fonts/sgifonts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-fonts/sgifonts/Makefile b/x11-fonts/sgifonts/Makefile index 47c56475b7b0..4cbc6798cb72 100644 --- a/x11-fonts/sgifonts/Makefile +++ b/x11-fonts/sgifonts/Makefile @@ -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: |