BIN_DIST_INST_SUBDIR Needs to be defined in config.mk so ./Makefile can see it
authorIan Lynagh <igloo@earth.li>
Fri, 7 Dec 2007 12:13:17 +0000 (12:13 +0000)
committerIan Lynagh <igloo@earth.li>
Fri, 7 Dec 2007 12:13:17 +0000 (12:13 +0000)
bindisttest/Makefile
mk/config.mk.in

index 2b56a05..b2cb231 100644 (file)
@@ -8,15 +8,6 @@ default_target: all
 TOP=..
 include $(TOP)/mk/boilerplate.mk
 
-ifeq "$(Windows)" "YES"
-BIN_DIST_INST_SUBDIR = "install dir"
-else
-# I very much doubt that paths with spaces will work on Unix
-BIN_DIST_INST_SUBDIR = installed
-endif
-
-BIN_DIST_INST_DIR = $(FPTOOLS_TOP_ABS)/bindisttest/$(BIN_DIST_INST_SUBDIR)
-
 all:
        $(RM) -rf $(BIN_DIST_INST_SUBDIR)
        $(RM) -rf ghc*
index d44d00d..5283f66 100644 (file)
@@ -1311,3 +1311,18 @@ WAY_o_HC_OPTS=
 
 CONFIGURE_ARGS = @CONFIGURE_ARGS@
 
+################################################################################
+#
+#    Bindist testing directory
+#
+################################################################################
+
+ifeq "$(Windows)" "YES"
+BIN_DIST_INST_SUBDIR = "install dir"
+else
+# I very much doubt that paths with spaces will work on Unix
+BIN_DIST_INST_SUBDIR = installed
+endif
+
+BIN_DIST_INST_DIR = $(FPTOOLS_TOP_ABS)/bindisttest/$(BIN_DIST_INST_SUBDIR)
+