1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Author: Lucas Nussbaum <lucas@debian.org>
Description: Fix FTBFS with GNUMAKEFLAGS=--shuffle=random
Bug-Debian: https://bugs.debian.org/1104751
Last-Update: 2025-05-05
--- a/Makefile
+++ b/Makefile
@@ -177,6 +177,8 @@ include $(HTSDIR)/htslib.mk
# but ignores the directory's timestamp, which changes every time a .o file is written.
$(BUILT_OBJECTS): | $(OBJ_DIR)
+$(BUILT_OBJECTS): autoversion
+
$(BIN_DIR)/bedtools: autoversion $(BUILT_OBJECTS) $(HTSDIR)/libhts.a | $(BIN_DIR)
@echo "- Building main bedtools binary."
$(CCPREFIX) $(CC_WRAPPER) $(CXX) $(ALL_LDFLAGS) -o $(BIN_DIR)/bedtools $(BUILT_OBJECTS) $(HTSDIR)/libhts.a $(ALL_LIBS)
|