diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-10-04T15·50+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-10-04T15·50+0000 |
commit | 36a23e86b6ab1265bbf883dd71bc844f7c9183f3 (patch) | |
tree | 602790ff8c0fac5f62811adb8c92010e39cf27fd /substitute.mk | |
parent | 450837bcc887a47260817611d01c22e35aba92b6 (diff) |
* "type -P" isn't portable.
Diffstat (limited to 'substitute.mk')
-rw-r--r-- | substitute.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/substitute.mk b/substitute.mk index 50d63ef5c73b..f502b942d66e 100644 --- a/substitute.mk +++ b/substitute.mk @@ -25,6 +25,6 @@ -e "s^@xmlflags\@^$(xmlflags)^g" \ -e "s^@xsltproc\@^$(xsltproc)^g" \ -e "s^@version\@^$(VERSION)^g" \ - -e "s^@testPath\@^$(coreutils):$$(dirname $$(type -P expr))^g" \ + -e "s^@testPath\@^$(coreutils):$$(dirname $$(type -p expr))^g" \ < $< > $@ || rm $@ if test -x $<; then chmod +x $@; fi |