[xiph-commits] r3435 - in libannodex/trunk: . doc include
include/annodex src src/examples src/importers src/libannodex
src/tests src/tools
johnf at svn.annodex.net
johnf at svn.annodex.net
Sat Feb 9 05:22:16 PST 2008
Author: johnf
Date: 2008-02-09 05:22:14 -0800 (Sat, 09 Feb 2008)
New Revision: 3435
Removed:
libannodex/trunk/mkinstalldirs
Modified:
libannodex/trunk/
libannodex/trunk/doc/
libannodex/trunk/include/
libannodex/trunk/include/annodex/
libannodex/trunk/src/
libannodex/trunk/src/examples/
libannodex/trunk/src/importers/
libannodex/trunk/src/libannodex/
libannodex/trunk/src/tests/
libannodex/trunk/src/tools/
Log:
Update svn:ignore
Property changes on: libannodex/trunk
___________________________________________________________________
Name: svn:ignore
+ annodex.pc
configure
Makefile.in
Makefile
libltdl
depcomp
config.guess
config.h
config.log
config.sub
config.status
ltmain.sh
config.h.in
autom4te.cache
missing
aclocal.m4
install-sh
stamp-h1
libtool
Property changes on: libannodex/trunk/doc
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
Doxyfile
libannodex
doxygen-build.stamp
Property changes on: libannodex/trunk/include
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
Property changes on: libannodex/trunk/include/annodex
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
anx_int64.h
Deleted: libannodex/trunk/mkinstalldirs
===================================================================
--- libannodex/trunk/mkinstalldirs 2008-02-09 13:03:17 UTC (rev 3434)
+++ libannodex/trunk/mkinstalldirs 2008-02-09 13:22:14 UTC (rev 3435)
@@ -1,111 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman at prep.ai.mit.edu>
-# Created: 1993-05-16
-# Public domain
-
-errstatus=0
-dirmode=""
-
-usage="\
-Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
-
-# process command line arguments
-while test $# -gt 0 ; do
- case $1 in
- -h | --help | --h*) # -h for help
- echo "$usage" 1>&2
- exit 0
- ;;
- -m) # -m PERM arg
- shift
- test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
- dirmode=$1
- shift
- ;;
- --) # stop option processing
- shift
- break
- ;;
- -*) # unknown option
- echo "$usage" 1>&2
- exit 1
- ;;
- *) # first non-opt arg
- break
- ;;
- esac
-done
-
-for file
-do
- if test -d "$file"; then
- shift
- else
- break
- fi
-done
-
-case $# in
- 0) exit 0 ;;
-esac
-
-case $dirmode in
- '')
- if mkdir -p -- . 2>/dev/null; then
- echo "mkdir -p -- $*"
- exec mkdir -p -- "$@"
- fi
- ;;
- *)
- if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
- echo "mkdir -m $dirmode -p -- $*"
- exec mkdir -m "$dirmode" -p -- "$@"
- fi
- ;;
-esac
-
-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
- else
- if test ! -z "$dirmode"; then
- echo "chmod $dirmode $pathcomp"
- lasterr=""
- chmod "$dirmode" "$pathcomp" || lasterr=$?
-
- if test ! -z "$lasterr"; then
- errstatus=$lasterr
- fi
- fi
- fi
- fi
-
- pathcomp="$pathcomp/"
- done
-done
-
-exit $errstatus
-
-# Local Variables:
-# mode: shell-script
-# sh-indentation: 2
-# End:
-# mkinstalldirs ends here
Property changes on: libannodex/trunk/src
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
Property changes on: libannodex/trunk/src/examples
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
.deps
.libs
print-title-memory
print-title-file
write-clip-file
print-lots
Property changes on: libannodex/trunk/src/importers
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
.deps
.libs
Property changes on: libannodex/trunk/src/libannodex
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
.deps
.libs
Version_script
Property changes on: libannodex/trunk/src/tests
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
.deps
.libs
noop
paramtest
insert-clips
Property changes on: libannodex/trunk/src/tools
___________________________________________________________________
Name: svn:ignore
+ Makefile
Makefile.in
.deps
.libs
anxcheck
anxed
anxrip
anxinfo
anxgrep
anxenc
More information about the commits
mailing list