emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/mmm-mode 6fa96364e9 13/14: Remove mkinstalldirs, obsole


From: ELPA Syncer
Subject: [elpa] externals/mmm-mode 6fa96364e9 13/14: Remove mkinstalldirs, obsolete for a long time
Date: Mon, 10 Oct 2022 18:57:51 -0400 (EDT)

branch: externals/mmm-mode
commit 6fa96364e953909302f3fffea6c93cfde9d4f702
Author: Ola Nilsson <ola.nilsson@gmail.com>
Commit: Ola Nilsson <ola.nilsson@gmail.com>

    Remove mkinstalldirs, obsolete for a long time
---
 mkinstalldirs | 38 --------------------------------------
 1 file changed, 38 deletions(-)

diff --git a/mkinstalldirs b/mkinstalldirs
deleted file mode 100755
index 5e17cd39fb..0000000000
--- a/mkinstalldirs
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /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"
-
-        mkdir "$pathcomp" || lasterr=$?
-
-        if test ! -d "$pathcomp"; then
-         errstatus=$lasterr
-        fi
-     fi
-
-     pathcomp="$pathcomp/"
-   done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]