File: remove-validation-tmp.o-in-clean-target.patch

package info (click to toggle)
sparse 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,936 kB
  • ctags: 3,948
  • sloc: ansic: 27,901; perl: 248; sh: 233; makefile: 166
file content (23 lines) | stat: -rw-r--r-- 658 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Uwe Kleine-König <uwe@kleine-koenig.org>
Date: Sun, 19 Jul 2015 11:46:49 +0200
Subject: [PATCH] remove validation/tmp.o in clean target

To prevent validation/tmp.o being still around after

	make check && make clean

remove it as part of the latter command.

Forwarded: id:1437299869-3669-1-git-send-email-uwe@kleine-koenig.org
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/Makefile
+++ b/Makefile
@@ -215,4 +215,5 @@
 	                 -o -name "*.c.error.expected" \
 	                 -o -name "*.c.error.got" \
 	                 -o -name "*.c.error.diff" \
+			 -o -name "*.o" \
 	                 \) -exec rm {} \;