X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=debian%2Fpatches%2Ffix-makefile;fp=debian%2Fpatches%2Ffix-makefile;h=22095e4cc58f06c80be7b7847ac8e9fec6455aeb;hb=29f418e5b19fdabcb2ad6735a4d92b269ab3cfb3;hp=0000000000000000000000000000000000000000;hpb=63789c30bd10255d0df934b3d7c4de1298dbe5b0;p=pkg%2Fbeep.git diff --git a/debian/patches/fix-makefile b/debian/patches/fix-makefile new file mode 100644 index 0000000..22095e4 --- /dev/null +++ b/debian/patches/fix-makefile @@ -0,0 +1,16 @@ +Author: Rhonda D'Vine +Description: make the make clean not fail if the binary isn't there + +Index: VCS/Makefile +=================================================================== +--- VCS.orig/Makefile 2016-01-04 13:32:23.518723192 +0100 ++++ VCS/Makefile 2016-01-17 12:50:49.026997125 +0100 +@@ -8,7 +8,7 @@ + default : beep + + clean : +- rm ${EXEC_NAME} ++ -rm ${EXEC_NAME} + + beep : beep.c + ${CC} ${FLAGS} -o ${EXEC_NAME} beep.c