summaryrefslogtreecommitdiff
path: root/lib/mkinstalldirs
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-01-06 10:46:09 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2012-01-06 10:46:32 -0800
commit08820f0bf86622da770be001392fdda2e792d85d (patch)
treef2ae200dff416950cbb207ee32baeec95f522229 /lib/mkinstalldirs
parente7de1ef89c049e8fe0cbe92921341b9a57867a92 (diff)
downloadautomake-08820f0bf86622da770be001392fdda2e792d85d.tar.gz
scripts: quote 'like this', not `like this'
This change follows up on recent changes to the GNU coding standards. They now suggest that we should quote 'like this' or "like this" instead of `like this'; see: <http://www.gnu.org/prep/standards/html_node/Quote-Characters.html>. Gnulib is being changed accordingly, and Gnulib imports some files directly from Automake master, so change those files to use the straight-up style. This affects only commentary and quoting in diagnostics.
Diffstat (limited to 'lib/mkinstalldirs')
-rwxr-xr-xlib/mkinstalldirs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mkinstalldirs b/lib/mkinstalldirs
index 4191a45db..55d537f87 100755
--- a/lib/mkinstalldirs
+++ b/lib/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