diff options
author | June McEnroe <june@causal.agency> | 2018-09-17 22:54:38 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-17 22:54:38 -0400 |
commit | 8db02d728d96b8900aa17e80b90793e2f1b5fd30 (patch) | |
tree | c8443c89cf3e3d84165d247062f5a498f75bbe89 | |
parent | Make install target depend on text files (diff) | |
download | src-8db02d728d96b8900aa17e80b90793e2f1b5fd30.tar.gz src-8db02d728d96b8900aa17e80b90793e2f1b5fd30.zip |
Use install(1) to install
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index f5ded14a..3b9f83e2 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,4 @@ clean: rm -f $(TXTS) install: $(TXTS) - cp $(TXTS) $(WEBROOT) + install -p -m 644 $(TXTS) $(WEBROOT) |