build system: use POSIX options only for cp

cp: improve comment
This commit is contained in:
Denis Vlasenko
2008-04-11 10:54:37 +00:00
parent 119f87be2a
commit 80f647c21c
2 changed files with 4 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ int cp_main(int argc, char **argv)
// Soft- and hardlinking don't mix
// -P and -d are the same (-P is POSIX, -d is GNU)
// -r and -R are the same
// -R (and therefore -r) switches on -d (coreutils does this)
// -R (and therefore -r) turns on -d (coreutils does this)
// -a = -pdR
opt_complementary = "-2:l--s:s--l:Pd:rRd:Rd:apdR";
flags = getopt32(argv, FILEUTILS_CP_OPTSTR "arPHL");