components/pigz/patches/Makefile.patch
author Michael Gerdts <mike.gerdts@oracle.com>
Wed, 20 Mar 2013 10:12:13 -0700
branchs11u2-sru
changeset 3429 7a74a88f6b9d
permissions -rw-r--r--
PSARC 2012/357 pigz 15824048 SUNBT7205721 bring pigz into userland consolidation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3429
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     1
# Solaris used to have whereis but it was removed early in S12.  Use type
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     2
# instead.  Because most Linux distros have whereis, this patch is deemed
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     3
# Solaris-centric and thus not worthy of being submitted upstream.
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     4
#
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     5
--- pigz-2.2.5/Makefile.orig	2012-02-11 21:18:18.000000000 -0800
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     6
+++ pigz-2.2.5/Makefile	2013-03-15 06:01:46.213801609 -0700
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     7
@@ -39,7 +39,7 @@
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     8
 	(printf "w" | gzip ; printf "x") | ./pigz -cdf | wc -c | test `cat` -eq 2
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
     9
 	(printf "w" | gzip ; printf "xy") | ./pigz -cdf | wc -c | test `cat` -eq 3
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
    10
 	(printf "w" | gzip ; printf "xyz") | ./pigz -cdf | wc -c | test `cat` -eq 4
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
    11
-	-@if test "`whereis compress | grep /`" != ""; then \
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
    12
+	-@if test "`type -f compress | grep /`" != ""; then \
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
    13
 	  echo 'compress -f < pigz.c | ./unpigz | cmp - pigz.c' ;\
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
    14
 	  compress -f < pigz.c | ./unpigz | cmp - pigz.c ;\
7a74a88f6b9d PSARC 2012/357 pigz
Michael Gerdts <mike.gerdts@oracle.com>
parents:
diff changeset
    15
 	fi