diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-05-31 11:18:07 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-05-31 11:18:07 +0200 |
| commit | 7f6b2a557eb6b26d8fe39020ec1565a058acd61b (patch) | |
| tree | 616e2a5390660353bf94694fff9a948de56850f1 | |
| parent | 560b4546110853339f15050d3a2578ffe4d0690a (diff) | |
Use install instead of cp for installing
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ clean: install: libuconfig.a mkdir -p $(PREFIX)/lib $(PREFIX)/include - cp libuconfig.a $(PREFIX)/lib/ - cp include/uconfig.h $(PREFIX)/include/ + install --mode=0644 libuconfig.a $(PREFIX)/lib/ + install --mode=0644 include/uconfig.h $(PREFIX)/include/ .PHONY: all check clean install |
