Description: remove checks for csh
 While the package can safely be built without csh, there are still a few
 checks that are causing various error messages at build time.  This patch
 removes them.
Author: Étienne Mollier <etienne.mollier@mailoo.org>
Forwarded: no
Last-Update: 2020-07-23
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- mummer.orig/Makefile
+++ mummer/Makefile
@@ -38,7 +38,6 @@
 CC   := $(filter /%,$(shell /bin/sh -c 'type gcc'))
 CXX  := $(filter /%,$(shell /bin/sh -c 'type g++'))
 SED  := $(filter /%,$(shell /bin/sh -c 'type sed'))
-CSH  := $(filter /%,$(shell /bin/sh -c 'type csh'))
 PERL := $(filter /%,$(shell /bin/sh -c 'type perl'))
 AR   := $(filter /%,$(shell /bin/sh -c 'type ar'))
 
@@ -76,9 +75,6 @@
 ifndef SED
 	@echo "ERROR: 'sed' StreamEDitor not found"
 endif
-ifndef CSH
-	@echo "ERROR: 'csh' C-shell not found"
-endif
 ifndef PERL
 	@echo "ERROR: 'perl' PERL not found"
 endif
--- mummer.orig/scripts/Makefile
+++ mummer/scripts/Makefile
@@ -18,7 +18,6 @@
 endif
 
 SED := $(filter /%,$(shell /bin/sh -c 'type sed'))
-CSH := $(filter /%,$(shell /bin/sh -c 'type csh'))
 PERL := $(filter /%,$(shell /bin/sh -c 'type perl'))
 VPATH := $(BIN_DIR)
 
