From 9f9c1935fa6df1431e54792d67b928bf157a6d36 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 6 Sep 2008 14:35:08 +0000 Subject: install: shrink -D code. By Bernhard. function old new delta install_main 726 707 -19 --- coreutils/install.c | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'coreutils/install.c') diff --git a/coreutils/install.c b/coreutils/install.c index 69bf7dc55..2b796e2a1 100644 --- a/coreutils/install.c +++ b/coreutils/install.c @@ -159,18 +159,15 @@ int install_main(int argc, char **argv) goto next; } } else { - if (isdir) - dest = concat_path_file(last, basename(arg)); if (opts & OPT_MKDIR_LEADING) { - char *slash = strrchr(dest, '/'); - if (slash) { - *slash = '\0'; - bb_make_directory(dest, 0755, FILEUTILS_RECUR); - /* errors are not checked. copy_file - * will fail if dir is not created. */ - *slash = '/'; - } + char *ddir = xstrdup(dest); + bb_make_directory(dirname(ddir), 0755, FILEUTILS_RECUR); + /* errors are not checked. copy_file + * will fail if dir is not created. */ + free(ddir); } + if (isdir) + dest = concat_path_file(last, basename(arg)); if (copy_file(arg, dest, copy_flags)) { /* copy is not made */ ret = EXIT_FAILURE; -- cgit v1.2.3