diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-11 18:47:28 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-11 18:47:28 +0000 |
commit | 8239c4b98b9f8556f88977d98f4267972c6595b2 (patch) | |
tree | 39681f3e9054f8d0b51afe863c5dbbf83f1e28bd /graphics/openexr | |
parent | 4b9cbf457ed84b65d836bc168acb2de7443e4ba0 (diff) | |
download | pkgsrc-8239c4b98b9f8556f88977d98f4267972c6595b2.tar.gz |
Fixed "test ==".
Diffstat (limited to 'graphics/openexr')
-rw-r--r-- | graphics/openexr/distinfo | 3 | ||||
-rw-r--r-- | graphics/openexr/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/openexr/distinfo b/graphics/openexr/distinfo index ad888811844..ade417fdbc8 100644 --- a/graphics/openexr/distinfo +++ b/graphics/openexr/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.4 2006/06/14 19:20:05 adam Exp $ +$NetBSD: distinfo,v 1.5 2006/10/11 18:47:28 rillig Exp $ SHA1 (OpenEXR-1.2.2.tar.gz) = 8ee37cd2a95b8561a4c850cc35781dec87b77bbf RMD160 (OpenEXR-1.2.2.tar.gz) = 54ceab6aa7a848f28a4cbd6cd63ab4023e3e372c Size (OpenEXR-1.2.2.tar.gz) = 9324108 bytes SHA1 (patch-aa) = 44649695ef175c0e2bf4caea8fcff6811286d559 +SHA1 (patch-ab) = af6a9601b68e8cab51de75f6d1a05476fdfa3b87 diff --git a/graphics/openexr/patches/patch-ab b/graphics/openexr/patches/patch-ab new file mode 100644 index 00000000000..695ac2bd806 --- /dev/null +++ b/graphics/openexr/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2006/10/11 18:47:28 rillig Exp $ + +--- bootstrap.orig 2006-10-11 20:46:46.000000000 +0200 ++++ bootstrap 2006-10-11 20:46:27.000000000 +0200 +@@ -1,7 +1,7 @@ + #! /bin/sh + # If we're on OS X, use glibtoolize instead of toolize + HOSTTYPE=`uname` +-if [ "$HOSTTYPE" == "Darwin" ]; then ++if [ "$HOSTTYPE" = "Darwin" ]; then + LIBTOOLIZE=glibtoolize + else + LIBTOOLIZE=libtoolize |