|
@@ -19,11 +19,11 @@ format:
|
|
|
|
|
|
ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
|
|
ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
|
|
|
|
|
|
-.INTERMEDIATE: $(BUILD_DIR)/Build.success
|
|
|
|
|
|
+.SECONDARY: $(BUILD_DIR)/Build.success
|
|
|
|
|
|
$(BUILD_DIR)/Build.success: $(BUILD_DIR)/Makefile
|
|
$(BUILD_DIR)/Build.success: $(BUILD_DIR)/Makefile
|
|
@echo "Building glibc, may take a while to finish. Warning messages may show up. If this process terminates with failures, see \"$(BUILD_DIR)/build.log\" for more information."
|
|
@echo "Building glibc, may take a while to finish. Warning messages may show up. If this process terminates with failures, see \"$(BUILD_DIR)/build.log\" for more information."
|
|
- cd $(BUILD_DIR) && ($(MAKE) 2>&1 >> build.log)
|
|
|
|
|
|
+ ($(MAKE) -C $(BUILD_DIR) 2>&1 >> build.log) && touch $@
|
|
# 2>&1 | tee -a build.log)
|
|
# 2>&1 | tee -a build.log)
|
|
|
|
|
|
$(GLIBC_TARGET): $(BUILD_DIR)/Build.success
|
|
$(GLIBC_TARGET): $(BUILD_DIR)/Build.success
|