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.
This commit is contained in:
Ryan Schmidt
2018-08-25 17:16:39 -05:00
committed by Stephen Sinclair
parent 6ce3ac9e10
commit 6acefc08a8

View File

@@ -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)