diff options
author | Eduardo Chappa <chappa@washington.edu> | 2014-04-09 16:53:03 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2014-04-09 16:53:03 -0600 |
commit | a2a86cd7f6d9cf3d6a88f3c6a005ff73f0b2341a (patch) | |
tree | e9113d18ff36fcaebc5b4cd0414f70d6e85b41a9 /mkinstalldirs | |
parent | 7d34d6b88a46a8cf950dc6305fa3c781edd9d4f7 (diff) | |
download | alpine-a2a86cd7f6d9cf3d6a88f3c6a005ff73f0b2341a.tar.xz |
* patch by Sam Hathaway to make web alpine build when debug is turned
off.
* Fix compilation bug that made build fail if passfile was not defined.
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-x | mkinstalldirs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkinstalldirs b/mkinstalldirs index 4191a45d..55d537f8 100755 --- a/mkinstalldirs +++ b/mkinstalldirs @@ -81,9 +81,9 @@ case $dirmode in echo "mkdir -p -- $*" exec mkdir -p -- "$@" else - # On NextStep and OpenStep, the `mkdir' command does not + # On NextStep and OpenStep, the 'mkdir' command does not # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already + # directories to create, and then abort because '.' already # exists. test -d ./-p && rmdir ./-p test -d ./--version && rmdir ./--version |