summaryrefslogtreecommitdiff
path: root/graphics/rayshade/patches/patch-ac
blob: 46d76f509a82d8f4b705bc080e3ed70775c9b113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
 
 #