Mercurial > ~dholland > hg > ag > index.cgi
view mk/mkinstalldirs.sh @ 20:bb115deb6fb2
Improve agfiles rule.
(1) It didn't depend on $(AGCL) and it absolutely should have.
(2) allow AGFORCE=1 to make it rebuild whether or not it looks out of
date.
(3) Document this.
author | David A. Holland |
---|---|
date | Mon, 13 Jun 2022 00:02:15 -0400 |
parents | 13d2b8934445 |
children |
line wrap: on
line source
#!/bin/sh # mkinstalldirs - create install directories # usage: mkinstalldirs dirs # make this work right even if someone puts spaces in ( while [ "x$1" != x ]; do echo "$1" shift done ) | awk '{ if ($0 ~ "^/") { lead = "/"; sub("^/", "", $0); } else { lead = ""; } n = split($0, a, "/"); for (i=1;i<=n;i++) { printf "%s", lead; for (j=1;j<=i;j++) { printf "%s", a[j]; if (j<i) printf "/"; } printf "\n"; } }' | sort -u | awk '{ printf "if [ ! -d \"%s\" ]; then\n", $0; printf " echo \" [MKDIR] %s\"\n", $0; printf " mkdir \"%s\" || exit 1\n", $0; printf " chmod 755 \"%s\"\n", $0; printf "fi\n" }' | sh