Use use ${INSTALL} -d in our build process. If INSTALL is set to

"install -C" then things will fail due to new checks.  Relax the
checks so that install -C -d works again.
This commit is contained in:
Warner Losh 2001-05-29 18:41:16 +00:00
parent 13b65deafa
commit 4c48c580ec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=77412

View File

@ -169,7 +169,7 @@ main(argc, argv)
argv += optind;
/* some options make no sense when creating directories */
if ((safecopy || docompare || dostrip) && dodir)
if (dostrip && dodir)
usage();
/* must have at least two arguments, except when creating directories */