diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-14T00·47+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-14T00·47+0100 |
commit | 14955c297de82e964ea5bf44f8aaf543d4cae33a (patch) | |
tree | 264740d66d805dbbb82c03146830a2a022569d88 /mk/functions.mk | |
parent | 68b47178730a95871eba4aa4df19a845c8e5a947 (diff) | |
parent | 36c67860363c93eb00cf5b8e2ad34f6f775e6901 (diff) |
Merge commit '36c67860363c93eb00cf5b8e2ad34f6f775e6901'
Diffstat (limited to 'mk/functions.mk')
-rw-r--r-- | mk/functions.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/functions.mk b/mk/functions.mk index 45d917399391..c48775db8c3b 100644 --- a/mk/functions.mk +++ b/mk/functions.mk @@ -10,5 +10,5 @@ filename-to-dep = $(dir $1).$(notdir $1).dep # empty string if not found. find-program = $(shell for i in $$(IFS=: ; echo $$PATH); do p=$$i/$(strip $1); if [ -e $$p ]; then echo $$p; break; fi; done) -# Remove trailing slash. +# Ensure that the given string ends in a single slash. add-trailing-slash = $(patsubst %/,%,$(1))/ |