pagetools/01-makefile-clean-fix.patch

16 lines
396 B
Diff
Raw Normal View History

Description: Fix of make clean target, as it leaves .d files inside directories
Author: Víctor Cuadrado Juan <me@viccuad.me>
Upstream: dead
--- Makefile
+++ Makefile
@@ -44,7 +44,7 @@
clean:
- rm -rf */*.o core *.d $(PTLIB) pbm_findskew/pbm_findskew tiff_findskew/tiff_findskew
+ rm -rf */*.o core *.d */*.d $(PTLIB) pbm_findskew/pbm_findskew tiff_findskew/tiff_findskew
-include *.d