From de4455380b8d2506839f6be2ca63dae9cdae5145 Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Sat, 25 Oct 2003 17:48:09 +0000 Subject: [PATCH] Option -p added to the mkdir command to create all directory tree structure before installing. --- port/install.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/port/install.sh.in b/port/install.sh.in index 912bb3dd..19e18137 100644 --- a/port/install.sh.in +++ b/port/install.sh.in @@ -1,5 +1,5 @@ #! @SCRIPT_SH@ -# $Header: /cvs/maptools/cvsroot/libtiff/port/Attic/install.sh.in,v 1.2 2003-03-07 02:37:26 warmerda Exp $ +# $Header: /cvs/maptools/cvsroot/libtiff/port/Attic/install.sh.in,v 1.3 2003-10-25 17:48:09 dron Exp $ # # @WARNING@ # @@ -104,7 +104,7 @@ do -o) SaveFirst=yes;; -O) RemoveFirst=yes; SaveFirst=yes;; -root) shift; ROOT=$1;; - -dir) CMD=mkdir; HasSource=no; + -dir) CMD="mkdir -p"; HasSource=no; RM=":"; STRIP=":" ;; -fifo) CMD=@MKFIFO@; HasSource=no;