3:02:04 PM PDT - Mon, May 2nd 2011 |
|
Not a lame answer at all. If you go to the download page the development version is available, which uses the new autobuild for global arrays...
Bert
Quote: Apr 26th 4:36 amSo this was a lame answer for me so I made a patch that got around the issue.
--- a/src/tools/global/GNUmakefile 2011-02-03 10:27:45.000000000 -0800
+++ b/src/tools/global/GNUmakefile 2011-03-19 22:27:49.499618776 -0700
@@ -68,7 +68,10 @@
$(LIBRARY):
(echo TARGET is $(TARGET); cd ./src; $(MAKE) || exit 1;)
-$(TESTS) %.x: $(LIBRARY)
+%.x: $(LIBRARY)
+ (cd ./testing; $(MAKE) $@ || exit 1;)
+
+$(TESTS): $(LIBRARY)
(cd ./testing; $(MAKE) $@ || exit 1;)
all: $(TESTS)[/quote]
|