diff options
author | hauke <hauke@pkgsrc.org> | 2017-07-14 10:10:39 +0000 |
---|---|---|
committer | hauke <hauke@pkgsrc.org> | 2017-07-14 10:10:39 +0000 |
commit | d280e81fa4cde5930a157b5d37e51bf06d1fc250 (patch) | |
tree | d5bd35e1679b1b6a9f2ff3f4e590bfbf54a2ce51 /graphics/darktable | |
parent | 04aeb6eefc058121ccac479c966412cc65847196 (diff) | |
download | pkgsrc-d280e81fa4cde5930a157b5d37e51bf06d1fc250.tar.gz |
I forgot to add a patch file - here it is.
Diffstat (limited to 'graphics/darktable')
-rw-r--r-- | graphics/darktable/patches/patch-tools_noise_benchmark.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/darktable/patches/patch-tools_noise_benchmark.sh b/graphics/darktable/patches/patch-tools_noise_benchmark.sh new file mode 100644 index 00000000000..6761c86426c --- /dev/null +++ b/graphics/darktable/patches/patch-tools_noise_benchmark.sh @@ -0,0 +1,15 @@ +$NetBSD: patch-tools_noise_benchmark.sh,v 1.3 2017/07/14 10:10:39 hauke Exp $ + +We bash bashisms. + +--- tools/noise/benchmark.sh.orig 2017-05-28 14:22:21.000000000 +0000 ++++ tools/noise/benchmark.sh +@@ -14,7 +14,7 @@ REF="reference.pfm" + + for i in *.pfm + do +- if [ "$i" == "$REF" ] ++ if [ "$i" = "$REF" ] + then + continue + fi |