diff options
author | Teddy Wing | 2019-11-03 01:25:39 +0100 |
---|---|---|
committer | Teddy Wing | 2019-11-03 01:25:39 +0100 |
commit | a45cad75f0f092d57068f30d12b3c06b8f7ef7c3 (patch) | |
tree | 469e08d0fbdc3cbdb3bbe7229642736746ddf400 /Makefile | |
parent | e82da4bc84db0d59f163186eaee2e04a67c99c94 (diff) | |
download | pdf-urls-master.tar.bz2 |
Possibly more portable this way.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ VERSION := $(shell fgrep 'const VERSION' src/main.rs | awk -F '"' '{ print $$2 }') -TOOLCHAIN := $(shell fgrep default_host_triple ~/.rustup/settings.toml | awk -F '"' '{ print $$2 }') +TOOLCHAIN := $(shell fgrep default_host_triple $(HOME)/.rustup/settings.toml | awk -F '"' '{ print $$2 }') RELEASE_PRODUCT := target/release/pdf-urls |