~ubuntu-branches/ubuntu/feisty/kvirc/feisty

« back to all changes in this revision

Viewing changes to mkinstalldirs

  • Committer: Bazaar Package Importer
  • Author(s): Robin Verduijn
  • Date: 2002-04-16 13:47:41 UTC
  • Revision ID: james.westby@ubuntu.com-20020416134741-02slrqk6ige4cchu
Tags: 1:2.1.2-11
* #138169: The problem in bug #138169 is due to a bug in libtool. See
  bug #98342 for details. KVirc still doesn't build correctly even with
  the latest libtool (1.4.2-4). When this gets properly fixed I'll update
  kvirc's build dependency on libtool. In the mean time, I've applied a
  patch from that bug report which fixes it for me.
  (Closes: #138169)
* Redid debian/rules somewhat; no longer try to build differently
  depending on how KDE is installed. If the preferred configuration breaks
  for some platform, I'd rather know about it.
* Don't link versus qt-mt anymore.
* GNU config automated update: config.sub (20010907 to 20020307),
  config.guess (20010904 to 20020320)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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" > /dev/null 2>&1 || lasterr=$?
 
24
     fi
 
25
 
 
26
     if test ! -d "$pathcomp"; then
 
27
        errstatus=$lasterr
 
28
     fi
 
29
 
 
30
     pathcomp="$pathcomp/"
 
31
   done
 
32
done
 
33
 
 
34
exit $errstatus
 
35
 
 
36
# mkinstalldirs ends here