Fix example given in comment
authorJacob Bachmeyer <jcb@gnu.org>
Sat, 5 Nov 2022 20:31:15 +0000 (15:31 -0500)
committerJacob Bachmeyer <jcb@gnu.org>
Sat, 5 Nov 2022 20:31:15 +0000 (15:31 -0500)
gatekeeper.pl

index b1981c8847bd6bb528881ee913cdb132f0e489b2..af622abf8a4a214bdfd1aacaa8797c72343862b5 100755 (executable)
@@ -2335,7 +2335,7 @@ sub mkdir_p {
 
   my @dir_steps;       # list of intermediate dirs needed
   # for example, creating bar/baz/quux in an empty /foo populates this list
-  # with qw( bar bar/baz bar/baz/quux )
+  # with qw( /foo/bar /foo/bar/baz /foo/bar/baz/quux ) on POSIX
 
   for (@dir_steps = (); @_ && ! -d File::Spec->catdir(@_); pop)
     { unshift @dir_steps, File::Spec->catdir(@_) }