From 6acefc08a84cdfd0ea0871794ac91b08b30b08d7 Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sat, 25 Aug 2018 17:16:39 -0500 Subject: [PATCH] Use cp -R instead of cp -r According to the cp(1) manpage on macOS, the -r option is historic its use is strongly discouraged. --- src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.in b/src/Makefile.in index 739fa74..add24a9 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -94,7 +94,7 @@ $(SHAREDLIB) : $(OBJECTS) install-headers: install -d $(DESTDIR)$(PREFIX)$(INCLUDEDIR)/stk - cp -r ../include/*.h $(DESTDIR)$(PREFIX)$(INCLUDEDIR)/stk + cp -R ../include/*.h $(DESTDIR)$(PREFIX)$(INCLUDEDIR)/stk install: $(SHAREDLIB) install-headers install -d $(DESTDIR)$(PREFIX)$(LIBDIR)