summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Cuadrado Juan <me@viccuad.me>2018-01-05 19:48:43 +0100
committerVíctor Cuadrado Juan <me@viccuad.me>2018-01-05 19:48:43 +0100
commit861bc73c1831448920fffd65f98f63e15af9b8d3 (patch)
treea1c38cdc3fce1d9607534d08fa46fecc9dcbab36
parentb48bc9116b1e1fa951ae8c2cf5f5bb9f25f92924 (diff)
drop existing quilt patch queue
-rw-r--r--debian/patches/01-makefile-clean-fix.patch14
-rw-r--r--debian/patches/02-makefile-ldflags-add.patch18
-rw-r--r--debian/patches/series2
3 files changed, 0 insertions, 34 deletions
diff --git a/debian/patches/01-makefile-clean-fix.patch b/debian/patches/01-makefile-clean-fix.patch
deleted file mode 100644
index e07a6de..0000000
--- a/debian/patches/01-makefile-clean-fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Fix of make clean target, as it leaves .d files inside directories
-Author: Víctor Cuadrado Juan <me@viccuad.me>
-
---- a/Makefile
-+++ b/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
-
diff --git a/debian/patches/02-makefile-ldflags-add.patch b/debian/patches/02-makefile-ldflags-add.patch
deleted file mode 100644
index 45a0adc..0000000
--- a/debian/patches/02-makefile-ldflags-add.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: Add LDFLAGS to linking phase so we can use them on dh rules
-Author: Víctor Cuadrado Juan <me@viccuad.me>
-
---- a/Makefile
-+++ b/Makefile
-@@ -37,10 +37,10 @@
-
-
- pbm_findskew/pbm_findskew: pbm_findskew/pbm_findskew.o $(PTLIB)
-- $(C++) pbm_findskew/pbm_findskew.o $(PTLIB) -l$(LIBPBM) -o $@
-+ $(C++) pbm_findskew/pbm_findskew.o $(PTLIB) -l$(LIBPBM) -o $@ $(LDFLAGS)
-
- tiff_findskew/tiff_findskew: tiff_findskew/tiff_findskew.o $(PTLIB)
-- $(C++) tiff_findskew/tiff_findskew.o $(PTLIB) -ltiff -o $@
-+ $(C++) tiff_findskew/tiff_findskew.o $(PTLIB) -ltiff -o $@ $(LDFLAGS)
-
-
- clean:
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index e944e0c..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-01-makefile-clean-fix.patch
-02-makefile-ldflags-add.patch