diff options
author | kris <kris@FreeBSD.org> | 2005-08-03 01:14:44 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-08-03 01:14:44 +0000 |
commit | b132d01201aaa9bb908f906d4155908aae1114a2 (patch) | |
tree | fd4ff1d251d9aafa2a1fff2440d50ec67af7b857 /math | |
parent | 260b6276b20d83c04ed65a25ca22c0c2deeff3a4 (diff) | |
download | FreeBSD-ports-b132d01201aaa9bb908f906d4155908aae1114a2.zip FreeBSD-ports-b132d01201aaa9bb908f906d4155908aae1114a2.tar.gz |
Fix build on > 4.x (don't unconditionally try to execute gtar)
Approved by: portmgr (self)
Diffstat (limited to 'math')
-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 3890464..0fbfcab 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 \ |