From e7ae83be731ad82537bc906560e91f29b81be088 Mon Sep 17 00:00:00 2001 From: "Heiko Schlittermann (HS12-RIPE)" Date: Thu, 18 Jan 2018 17:34:15 +0100 Subject: [PATCH] Testsuite: Use cp+chmod instead of install On Solaris, install doesn't seem to behave as expected. (Or, it has different installs and we call the wrong one) --- test/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Makefile.in b/test/Makefile.in index c96fb4bdd..0f229a2cc 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -26,7 +26,7 @@ all: binaries sysbinaries binaries: $(BINARIES) -sysbinaries: FORCE +sysbinaries: FORCE binaries sh -x bin/locate initdb postgres pg_ctl mysqld ls -la bin.sys @@ -82,7 +82,8 @@ bin/showids: $(SRC)/showids.c Makefile $(CC) $(CFLAGS) $(LDFLAGS) -o bin/showids $(SRC)/showids.c bin/locate: $(SRC)/locate.sh Makefile - install -m 0755 $(SRC)/locate.sh bin/locate + cp $(SRC)/locate.sh bin/locate + chmod 0755 bin/locate clean:; rm -rf $(BINARIES) bin.sys -- 2.30.2