File: do-not-remove-non-existing.patch

package info (click to toggle)
nxtrim 0.4.3%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: cpp: 1,593; python: 142; sh: 97; makefile: 43
file content (14 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Fix errors while launching Make clean
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2021-04-05
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,6 @@
 ecmg: nxtrim
 	cd test/;bash -e ecmg.sh
 clean:
-	rm $(OBJS) nxtrim test version.h
+	rm -f $(OBJS) nxtrim version.h
 	rm -rf test/output_dir/
-	rm test/*bam test/*pe.fastq.gz test/*mp.fastq.gz  test/*unknown.fastq.gz
+	rm -f test/*bam test/*pe.fastq.gz test/*mp.fastq.gz test/*unknown.fastq.gz