summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-20 00:27:07 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-20 00:27:07 +0100
commit4d018019e98f0b6cbdb83ce3d7596e0e9409702c (patch)
tree58e41afc2751e50c83bf5f1770ee39040d2dddb6 /Makefile
parentsupport multiple backlight devices in textconf (diff)
downloadblueshift-4d018019e98f0b6cbdb83ce3d7596e0e9409702c.tar.gz
blueshift-4d018019e98f0b6cbdb83ce3d7596e0e9409702c.tar.bz2
blueshift-4d018019e98f0b6cbdb83ce3d7596e0e9409702c.tar.xz
missed to rm command before the filename when cython fails
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d35c941..1c8a57a 100644
--- a/Makefile
+++ b/Makefile
@@ -116,7 +116,7 @@ obj/%.o: obj/%.c
obj/%.c: src/%.pyx
@mkdir -p obj
- if ! cython -3 -v $<; then src/$*.c ; false ; fi
+ if ! cython -3 -v $<; then rm src/$*.c ; false ; fi
mv src/$*.c $@