aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorEthan Sommer <e5ten.arch@gmail.com>2021-03-24 14:25:15 -0400
committerRob Landley <rob@landley.net>2021-03-24 22:12:34 -0500
commit3cde24138ac06e384965db2944e858d2110ecacb (patch)
treef1f01b725fe6ad25140c680f3d28f2de212d2958 /toys
parent855eca3eaf8ea849599662900a3de18f6ebab9ef (diff)
downloadtoybox-3cde24138ac06e384965db2944e858d2110ecacb.tar.gz
Fix install -t
Diffstat (limited to 'toys')
-rw-r--r--toys/posix/cp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/toys/posix/cp.c b/toys/posix/cp.c
index d98c2ae7..a27c200a 100644
--- a/toys/posix/cp.c
+++ b/toys/posix/cp.c
@@ -520,11 +520,11 @@ void install_main(void)
return;
}
- if (FLAG(D) && !FLAG(t)) {
- TT.destname = toys.optargs[toys.optc-1];
- if (mkpathat(AT_FDCWD, TT.destname, 0, MKPATHAT_MAKE))
- perror_exit("-D '%s'", TT.destname);
- if (toys.optc == 1) return;
+ if (FLAG(D)) {
+ char *destname = FLAG(t) ? TT.i.t : (TT.destname = toys.optargs[toys.optc-1]);
+ if (mkpathat(AT_FDCWD, destname, 0777, MKPATHAT_MAKE | (FLAG(t) ? MKPATHAT_MKLAST : 0)))
+ perror_exit("-D '%s'", destname);
+ if (toys.optc == !FLAG(t)) return;
}
// Translate flags from install to cp