ports/net/nocatsplash/files/patch-mkinstalldirs
Rene Ladan a57213f3df - fix and undeprecate
- add license (GPLv2)
- update MASTER_SITES and CONFLICTS
- tidy up pkg-descr
- pass maintainership to submitter

PR:		197495
Submitted by:	Chris Hutchinson
MFH:		2015Q3
2015-07-22 05:27:59 +00:00

28 lines
666 B
Text

--- mkinstalldirs.orig 2003-01-02 10:39:12 UTC
+++ mkinstalldirs
@@ -7,25 +7,6 @@
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 ;;
- -- ) shift; break ;; # stop option processing
- -* ) echo "${usage}" 1>&2; exit 1 ;; # unknown option
- * ) break ;; # first non-opt arg
- esac
-done
-
for file
do
if test -d "$file"; then