summaryrefslogtreecommitdiff
path: root/libtoolize.in
diff options
context:
space:
mode:
Diffstat (limited to 'libtoolize.in')
-rw-r--r--libtoolize.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/libtoolize.in b/libtoolize.in
index 9087bd3b..b1e467d7 100644
--- a/libtoolize.in
+++ b/libtoolize.in
@@ -315,7 +315,7 @@ func_mkdir_p ()
my_directory_path="$1"
my_dir_list=
- if test -n "$my_directory_path"; then
+ if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
# Protect directory names starting with `-'
case $my_directory_path in
@@ -345,11 +345,11 @@ func_mkdir_p ()
$MKDIR "$my_dir" 2>/dev/null || :
done
IFS="$save_mkdir_p_IFS"
- fi
- # Bail out if we (or some other process) failed to create a directory.
- test -d "$my_directory_path" || \
- func_fatal_error "Failed to create \`$1'"
+ # Bail out if we (or some other process) failed to create a directory.
+ test -d "$my_directory_path" || \
+ func_fatal_error "Failed to create \`$1'"
+ fi
}