diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 21:54:33 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 21:54:33 +0000 |
commit | 60b37dbedcfe6e22fe9a61ee8432ae7bd2780483 (patch) | |
tree | 42c5d548da07f10a85c92da3191700e6f34e6829 /graphics/rayshade/files/patch-ad | |
parent | 83fd533649cd182142029432aebb1c591fd3f524 (diff) |
Notes
Diffstat (limited to 'graphics/rayshade/files/patch-ad')
-rw-r--r-- | graphics/rayshade/files/patch-ad | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/graphics/rayshade/files/patch-ad b/graphics/rayshade/files/patch-ad deleted file mode 100644 index 862e271a383a..000000000000 --- a/graphics/rayshade/files/patch-ad +++ /dev/null @@ -1,15 +0,0 @@ -On really fast machines some of the .o files aren't being added to -libray.a because they are generated so fast that make(1) thinks the -library is up-to-date. Marvel at the horrific hack below. - ---- libray/Makefile.orig Sat Feb 26 16:41:28 2000 -+++ libray/Makefile Sat Feb 26 16:42:36 2000 -@@ -12,6 +12,8 @@ - for i in $(STUFF); do \ - (cd $$i && $(MAKE)); \ - done -+ rm -f libray.a -+ ar cur libray.a `find . -name '*.o'` - - # - # Have to keep clean/depend separete so |