#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.1 2000/03/10 12:02:43 reinelt Exp $ 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" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr fi fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here value='1'/> lcd4linuxJonathan McCrohan
aboutsummaryrefslogtreecommitdiffstats
path: root/drv_BWCT.c (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2010-10-31Minor description fixesharbaum5-218/+228
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1130 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2010-09-19patch from Jar: typo fixed, documentation which is now in the wiki removedmichael1-28/+1
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1129 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2010-08-25added netmask_short in plugin_netinfo for CIDR notationvolker1-13/+52
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1128 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2010-07-16compile error fixed (thanks to Tom)michael1-19/+19
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1127 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2010-07-13support for Sure Electronics's 1602 LCD Display Board with USB from Mikhailmichael5-13/+50
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1126 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2010-07-11X11 driver: possibility to ignore auto-repeated KeyPress eventsmzuther1-1/+22
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1125 3ae390bd-cb1e-0410-b409-cd5a39f66f1f