mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
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:
committed by
Stephen Sinclair
parent
6ce3ac9e10
commit
6acefc08a8
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user