diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-10-04 21:25:12 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-10-04 21:25:12 +0000 |
commit | a6943e1c4f5fcd1cae67d810581397ef7a8c3eb1 (patch) | |
tree | fa5dc6d4a7e8e1627d9e5633e231dd903be96fb8 /graphics/rayshade | |
parent | 2fab321af809a0c518d359a9f0773102edfdc5f7 (diff) | |
download | pkgsrc-a6943e1c4f5fcd1cae67d810581397ef7a8c3eb1.tar.gz |
This fixes an error that will only occur on machines fast enough to
compile through two directories in the "libray" directorie in 1
second: the upto-date check of libray.a will fail because it was already
touched in this very second. Slowing things down here will help.
(I seem to remember some hacking about this before, maybe in make(1),
but I don't remember, and I won't start hacking make(1) now ;-)
Diffstat (limited to 'graphics/rayshade')
-rw-r--r-- | graphics/rayshade/files/patch-sum | 3 | ||||
-rw-r--r-- | graphics/rayshade/patches/patch-ac | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/graphics/rayshade/files/patch-sum b/graphics/rayshade/files/patch-sum index 8814eac2c6e..e15ebc9e9f5 100644 --- a/graphics/rayshade/files/patch-sum +++ b/graphics/rayshade/files/patch-sum @@ -1,5 +1,6 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 13:51:11 agc Exp $ +$NetBSD: patch-sum,v 1.2 1999/10/04 21:25:12 hubertf Exp $ MD5 (patch-aa) = cd4751157ac4bb2b54b495186dd5c077 MD5 (patch-ab) = 02b3abe972f4c1ba883919e110c757e5 +MD5 (patch-ac) = 48d868f50cf881ebf9de3a56290db899 MD5 (patch-ba) = 88dfd4c97706d3176c1eb7b0090bc6f9 diff --git a/graphics/rayshade/patches/patch-ac b/graphics/rayshade/patches/patch-ac new file mode 100644 index 00000000000..46d76f509a8 --- /dev/null +++ b/graphics/rayshade/patches/patch-ac @@ -0,0 +1,22 @@ +$NetBSD: patch-ac,v 1.1 1999/10/04 21:25:14 hubertf Exp $ + +This fixes an error that will only occur on machines fast enough to +compile through two directories in the "libray" directorie in 1 +second: the upto-date check of libray.a will fail because it was already +touched in this very second. Slowing things down here will help. + +(I seem to remember some hacking about this before, maybe in make(1), +but I don't remember, and I won't start hacking make(1) now ;-) + + +--- libray/Makefile.orig Mon Oct 4 23:12:55 1999 ++++ libray/Makefile Mon Oct 4 23:13:10 1999 +@@ -10,7 +10,7 @@ + + default: + for i in $(STUFF); do \ +- (cd $$i && $(MAKE)); \ ++ (echo $$i ; cd $$i && $(MAKE) ; sleep 1); \ + done + + # |