diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-20 00:27:07 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-20 00:27:07 +0100 |
commit | 4d018019e98f0b6cbdb83ce3d7596e0e9409702c (patch) | |
tree | 58e41afc2751e50c83bf5f1770ee39040d2dddb6 /Makefile | |
parent | support multiple backlight devices in textconf (diff) | |
download | blueshift-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $@ |