view mkinstalldirs @ 90464:4702b592db4c

(Qmonospace, Qsans_serif, Qserif, Qmono, Qsans) (Qsans__serif): New variables. (ftfont_generic_family_list): New variable. (syms_of_ftfont): Initialize the above variables. (ftfont_pattern_entity): Argument NAME deleted. (ftfont_list_generic_family): New function. (ftfont_parse_name): Delete this function. (ftfont_list): Try generic family only when FcFontList found no font. (ftfont_list_family): Fix args to FcObjectSetBuild.
author Kenichi Handa <handa@m17n.org>
date Fri, 16 Jun 2006 12:24:58 +0000
parents 746c40973d25
children 730155197b96 eb7e8d483840
line wrap: on
line source

#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# 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
   do
     pathcomp="$pathcomp$d"
     case "$pathcomp" in
       -* ) pathcomp=./$pathcomp ;;
     esac

     if test ! -d "$pathcomp"; then
        echo "mkdir $pathcomp" 1>&2

        (mkdir "$pathcomp" && chmod a+rx "$pathcomp") || lasterr=$?

        if test ! -d "$pathcomp"; then
  	  errstatus=$lasterr
        fi
     fi

     pathcomp="$pathcomp/"
   done
done

exit $errstatus

# mkinstalldirs ends here