File: make_shuffle_random.patch

package info (click to toggle)
bedtools 2.31.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,320 kB
  • sloc: ansic: 38,507; cpp: 29,721; sh: 8,001; makefile: 664; python: 240; javascript: 16
file content (16 lines) | stat: -rw-r--r-- 650 bytes parent folder | download
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)