File: fix-make-clean

package info (click to toggle)
aribas 1.65-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 1,524 kB
  • sloc: ansic: 26,750; pascal: 384; lisp: 133; makefile: 32; sh: 1
file content (12 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
Index: aribas/src/Makefile
===================================================================
--- aribas.orig/src/Makefile	2023-01-23 21:08:06.245742846 +0100
+++ aribas/src/Makefile	2023-01-23 21:08:06.245742846 +0100
@@ -50,6 +50,6 @@
 	$(CC) -o $(PROGRAM) $(OBJECTS)
 	strip $(PROGRAM)
 clean:
-	\rm *.o
+	\rm -f *.o
 
 ############################ EOF ##############################