From cbd5feba0cff19d6576bb9b1220abc7419e882cf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Tue, 21 Nov 2000 16:35:36 +0000 Subject: [PATCH] we need to this be able to make install from build dir git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1227 a592a061-630c-0410-9148-cb99ea01b6c8 --- mkinstalldirs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 mkinstalldirs diff --git a/mkinstalldirs b/mkinstalldirs new file mode 100755 index 0000000000..cd1fe0a794 --- /dev/null +++ b/mkinstalldirs @@ -0,0 +1,32 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy +# Author: Noah Friedman +# Created: 1993-05-16 +# Public domain + +errstatus=0 + +for file +do + set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` + shift + + pathcomp= + for d in ${1+"$@"} ; do + pathcomp="$pathcomp$d" + case "$pathcomp" in + -* ) pathcomp=./$pathcomp ;; + esac + + if test ! -d "$pathcomp"; then + echo "mkdir $pathcomp" 1>&2 + mkdir "$pathcomp" || errstatus=$? + fi + + pathcomp="$pathcomp/" + done +done + +exit $errstatus + +# mkinstalldirs ends here -- 2.39.2