diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-08-03 01:14:44 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-08-03 01:14:44 +0000 |
commit | e50c56fdcb147cce91f69b41d21d5412991293a8 (patch) | |
tree | ce15f6eaa6061cb358b3196105f1b9bff89572b9 /math/unixstat | |
parent | Fix a regression in kpdf that prevents it from opening a great number (diff) |
Fix build on > 4.x (don't unconditionally try to execute gtar)
Approved by: portmgr (self)
Notes
Notes:
svn path=/head/; revision=140741
Diffstat (limited to 'math/unixstat')
-rw-r--r-- | math/unixstat/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/unixstat/Makefile b/math/unixstat/Makefile index 389046438a96..0fbfcabb5806 100644 --- a/math/unixstat/Makefile +++ b/math/unixstat/Makefile @@ -22,11 +22,12 @@ RESTRICTED= "License does not allow redistribution of binaries" .if ( ${OSVERSION} < 500000 ) EXTRACT_DEPENDS=gtar:${PORTSDIR}/archivers/gtar +TAR= gtar .endif EXTRACT_CMD= uncompress EXTRACT_BEFORE_ARGS=-c -EXTRACT_AFTER_ARGS=| gtar -xf - +EXTRACT_AFTER_ARGS=| ${TAR} -xf - MAN1= abut.1 anova.1 calc.1 colex.1 contab.1 desc.1 dm.1 dprime.1 \ dsort.1 features.1 ff.1 fls.1 fpack.1 linex.1 maketrix.1 \ |