From 083d1451ac5fa87172ea3c78adcbe2768377d2e8 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 8 Jul 2016 10:24:09 -0700 Subject: [PATCH] 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. --- xinstall.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xinstall.c b/xinstall.c index f5f6956..bf921fb 100644 --- a/xinstall.c +++ b/xinstall.c @@ -156,6 +156,9 @@ main(int argc, char *argv[]) char *p; ARGBEGIN { + case 'c': + /* no-op for compatibility */ + break; case 'd': dflag = 1; break;