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/patches/patch-ac | |
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/patches/patch-ac')
-rw-r--r-- | graphics/rayshade/patches/patch-ac | 22 |
1 files changed, 22 insertions, 0 deletions
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 + + # |