aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-16 17:22:22 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-16 17:22:22 +1300
commit61cb9dc2de72aad5e76b988b7e43f00a6996afa0 (patch)
treeda7f1e5cb21c64584dfae9517d3ffb45af968a4e
parentUpdate to c99 (diff)
downloadcrypt-61cb9dc2de72aad5e76b988b7e43f00a6996afa0.tar.gz
crypt-61cb9dc2de72aad5e76b988b7e43f00a6996afa0.zip
Remove double quotes from Makefile
They don't do quite what they would normally in shell
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2988493..eca18d7 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ clean :
rm -f crypt
install : crypt
- mkdir -p -- "$(PREFIX)"/bin "$(PREFIX)"/share/man/man1
- install crypt -- "$(PREFIX)"/bin
- install crypt.1 -- "$(PREFIX)"/share/man/man1
+ mkdir -p -- $(PREFIX)/bin $(PREFIX)/share/man/man1
+ install crypt -- $(PREFIX)/bin
+ install crypt.1 -- $(PREFIX)/share/man/man1