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.
diff --git a/xinstall.c b/xinstall.c
index f5f6956..bf921fb 100644
--- a/xinstall.c
+++ b/xinstall.c
@@ -156,6 +156,9 @@
 	char *p;
 
 	ARGBEGIN {
+	case 'c':
+		/* no-op for compatibility */
+		break;
 	case 'd':
 		dflag = 1;
 		break;