]> git.deb.at Git - pkg/beep.git/blob - debian/patches/fix-makefile
New patch fix-makefile to make make clean not fail
[pkg/beep.git] / debian / patches / fix-makefile
1 Author: Rhonda D'Vine <rhonda@debian.org>
2 Description: make the make clean not fail if the binary isn't there
3
4 Index: VCS/Makefile
5 ===================================================================
6 --- VCS.orig/Makefile   2016-01-04 13:32:23.518723192 +0100
7 +++ VCS/Makefile        2016-01-17 12:50:49.026997125 +0100
8 @@ -8,7 +8,7 @@
9  default : beep
10  
11  clean : 
12 -       rm ${EXEC_NAME}
13 +       -rm ${EXEC_NAME}
14  
15  beep : beep.c
16         ${CC} ${FLAGS} -o ${EXEC_NAME} beep.c