summaryrefslogtreecommitdiffstats
path: root/third_party/libevent/mkinstalldirs
diff options
context:
space:
mode:
authormdempsky <mdempsky@chromium.org>2015-10-06 12:48:15 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-06 19:49:17 +0000
commitd786fb0b07cb0ea5d3a99dc251fa6a635dad1734 (patch)
treea280db22636e317cc50fccf5d052bcd9c4daf462 /third_party/libevent/mkinstalldirs
parent96b767fe7597aba225e3c8ba8d7d4e8ec539d6b8 (diff)
downloadchromium_src-d786fb0b07cb0ea5d3a99dc251fa6a635dad1734.zip
chromium_src-d786fb0b07cb0ea5d3a99dc251fa6a635dad1734.tar.gz
chromium_src-d786fb0b07cb0ea5d3a99dc251fa6a635dad1734.tar.bz2
Update libevent to 1.4.15
Based on git tag release-1.4.15-stable (3e9aad72214519ac2ad6f5f023af48136d0dd50d). linux/event-config.h was generated per the instructions in README.chromium, but the other OS's copies were then updated by simply blindly applying the same change. chromium.patch was refreshed to avoid multiple "apply this patch, then that patch, oh and that patch too" steps in README.chromium. BUG=532762 TBR=ben@chromium.org Review URL: https://codereview.chromium.org/1374373003 Cr-Commit-Position: refs/heads/master@{#352666}
Diffstat (limited to 'third_party/libevent/mkinstalldirs')
-rw-r--r--third_party/libevent/mkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/third_party/libevent/mkinstalldirs b/third_party/libevent/mkinstalldirs
deleted file mode 100644
index 56d6671..0000000
--- a/third_party/libevent/mkinstalldirs
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman@prep.ai.mit.edu>
-# Created: 1993-05-16
-# Public domain
-
-# $Id: mkinstalldirs 11 2002-04-09 17:52:23Z nprovos $
-
-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