summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/xinstall/xinstall.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index bf103d4..55d59cc 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -169,9 +169,16 @@ main(argc, argv)
argv += optind;
/* some options make no sense when creating directories */
- if (dostrip && dodir)
+ if ((safecopy || dostrip) && dodir)
usage();
+ /*
+ * Older versions allowed -d -C combo. Issue a warning
+ * for now, but turn this into an error before 4.5-RELEASE.
+ */
+ if (docompare && dodir)
+ warnx("the -d and -C options may not be specified together");
+
/* must have at least two arguments, except when creating directories */
if (argc < 2 && !dodir)
usage();
OpenPOWER on IntegriCloud