$NetBSD: patch-src_Makefile,v 1.2 2018/02/01 16:45:57 he Exp $

Do not rely on bash being in /bin, especially when sh will do just fin...
Remove needless use of -v with mkdir; It's not POSIX and NetBSD doesn't have it.

--- src/Makefile.orig	2016-09-22 22:56:31.000000000 +0000
+++ src/Makefile
@@ -151,7 +151,7 @@ LIBRARY = libexiv2.la
 
 # ******************************************************************************
 # Initialisations
-SHELL = /bin/bash
+SHELL = /bin/sh
 
 .SUFFIXES:
 .SUFFIXES: .c .cpp .o .so
@@ -252,7 +252,7 @@ $(BINARY): %: %.o lib
 	@$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $@.o -rpath $(libdir)
 
 $(EXIV2EXE): lib $(EXIV2OBJ) $(EXIV2COBJ)
-	mkdir -pv ../bin 2>&1 > /dev/null
+	mkdir -p ../bin 2>&1 > /dev/null
 	@$(LIBTOOL) --mode=link $(LINK.cc) -o ../bin/$@ $(LIBRARY) $(EXIV2OBJ) $(EXIV2COBJ) -rpath $(libdir)
 
 install-header:
