diff options
author | Peter Powell <petpow@saberuk.com> | 2018-05-01 19:47:08 +0200 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-05-01 19:47:08 +0200 |
commit | 2772c2fa2d51de376d84dd3674c7c0214f570469 (patch) | |
tree | a3f63b81e05082db7826e656c5e9f951105e25df /make/template | |
parent | 506344a903d3fa2fcb53f22a3a1c8174b1deb357 (diff) |
Use the `pwd` tool that is in the path rather than `/bin/pwd`.
Diffstat (limited to 'make/template')
-rw-r--r-- | make/template/main.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index f3f2c3cc5..7e48b01d0 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -114,7 +114,7 @@ FOOTER = finishmessage MAKEFLAGS += --no-print-directory -SOURCEPATH = $(shell /bin/pwd) +SOURCEPATH = $(shell pwd) ifndef INSPIRCD_VERBOSE MAKEFLAGS += --silent |