spielwiese
Last change
on this file since 8a9b23c was
8a9b23c,
checked in by Olaf Bachmann <obachman@…>, 26 years ago
|
Tue May 6 09:30:51 1997 Olaf Bachmann
<obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)>
* configure.in: Manuallu put INSTALL into Makefile.in
T
git-svn-id: file:///usr/local/Singular/svn/trunk@268 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100755
|
File size:
649 bytes
|
Rev | Line | |
---|
[8a9b23c] | 1 | #!/bin/sh |
---|
| 2 | # mkinstalldirs --- make directory hierarchy |
---|
| 3 | # Author: Noah Friedman <friedman@prep.ai.mit.edu> |
---|
| 4 | # Created: 1993-05-16 |
---|
| 5 | # Last modified: 1994-03-25 |
---|
| 6 | # Public domain |
---|
| 7 | |
---|
| 8 | errstatus=0 |
---|
| 9 | |
---|
| 10 | for file in ${1+"$@"} ; do |
---|
| 11 | set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` |
---|
| 12 | shift |
---|
| 13 | |
---|
| 14 | pathcomp= |
---|
| 15 | for d in ${1+"$@"} ; do |
---|
| 16 | pathcomp="$pathcomp$d" |
---|
| 17 | case "$pathcomp" in |
---|
| 18 | -* ) pathcomp=./$pathcomp ;; |
---|
| 19 | esac |
---|
| 20 | |
---|
| 21 | if test ! -d "$pathcomp"; then |
---|
| 22 | echo "mkdir $pathcomp" 1>&2 |
---|
| 23 | mkdir "$pathcomp" || errstatus=$? |
---|
| 24 | fi |
---|
| 25 | |
---|
| 26 | pathcomp="$pathcomp/" |
---|
| 27 | done |
---|
| 28 | done |
---|
| 29 | |
---|
| 30 | exit $errstatus |
---|
| 31 | |
---|
| 32 | # mkinstalldirs ends here |
---|
Note: See
TracBrowser
for help on using the repository browser.