install: Handle -c flag as a no-op

This is required in order for autoconf's AC_PROG_INSTALL to use the sbase
install. Otherwise it will fall back to the slow and sucky install-sh script
from automake.
This commit is contained in:
Michael Forney 2016-07-08 10:24:09 -07:00 committed by sin
parent 49e1854600
commit 083d1451ac
1 changed files with 3 additions and 0 deletions

View File

@ -156,6 +156,9 @@ main(int argc, char *argv[])
char *p;
ARGBEGIN {
case 'c':
/* no-op for compatibility */
break;
case 'd':
dflag = 1;
break;