mirror of
https://github.com/thestk/stk
synced 2026-04-23 07:48:36 +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-headers:
|
||||||
install -d $(DESTDIR)$(PREFIX)$(INCLUDEDIR)/stk
|
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: $(SHAREDLIB) install-headers
|
||||||
install -d $(DESTDIR)$(PREFIX)$(LIBDIR)
|
install -d $(DESTDIR)$(PREFIX)$(LIBDIR)
|
||||||
|
|||||||
Reference in New Issue
Block a user