Comment 17 for bug 1132254

Revision history for this message
Juho Snellman (jsnell+bugs) wrote :

Either I can't read a diff or we're talking of different things :-) I mean the following changes, of introducing a commented out variable and then introducing a use of it:

--- a/contrib/asdf-install/Makefile
+++ b/contrib/asdf-install/Makefile
@@ -1,2 +1,3 @@
 SYSTEM=asdf-install
+#DEPENDENCIES=sb-bsd-sockets sb-posix

--- a/contrib/asdf-module.mk
+++ b/contrib/asdf-module.mk
@@ -27,18 +29,21 @@ endif
- $(MAKE) -C ../asdf
+ for i in asdf $(DEPENDENCIES) ; do $(MAKE) -C ../$$i ; done

Which both look like no-ops to me. Not a problem to revert these, but I wanted to know if this was intentional.