sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit 083d1451ac5fa87172ea3c78adcbe2768377d2e8
parent 49e1854600bca3b2efbddd365d7b328fbcd0ced6
Author: Michael Forney <mforney@mforney.org>
Date:   Fri,  8 Jul 2016 10:24:09 -0700

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.

Diffstat:
Mxinstall.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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;