From 6ec01646dc55b6fa688ed5906e0d52556d174da2 Mon Sep 17 00:00:00 2001 From: markm Date: Sun, 20 Oct 1996 08:49:26 +0000 Subject: Clean import of libgmp 2.0.2, with only the non-x86 bits removed. BMakefiles and other bits will follow. Requested by: Andrey Chernov Made world by: Chuck Robey --- contrib/libgmp/mkinstalldirs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 contrib/libgmp/mkinstalldirs (limited to 'contrib/libgmp/mkinstalldirs') diff --git a/contrib/libgmp/mkinstalldirs b/contrib/libgmp/mkinstalldirs new file mode 100755 index 0000000..cd1fe0a --- /dev/null +++ b/contrib/libgmp/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 -- cgit v1.1