diff options
author | Bryan Paxton <[email protected]> | 2018-07-12 01:37:40 -0500 |
---|---|---|
committer | Bryan Paxton <[email protected]> | 2018-07-12 01:39:55 -0500 |
commit | f3907214318bfd697433794bc3ac905ffe69f5ce (patch) | |
tree | e7b81f5d9c090fa3674e809bee6bda0f92e47c48 /make | |
parent | 7b206e455df25a8e4ae78cae1939748ed693be40 (diff) | |
download | otp-f3907214318bfd697433794bc3ac905ffe69f5ce.tar.gz otp-f3907214318bfd697433794bc3ac905ffe69f5ce.tar.bz2 otp-f3907214318bfd697433794bc3ac905ffe69f5ce.zip |
Preprend PERL with /usr/bin/env
- asdf and similar tools do not play well when an absolute path to a
shim is used in make_emakefile
Diffstat (limited to 'make')
-rwxr-xr-x | make/make_emakefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/make_emakefile.in b/make/make_emakefile.in index fbca77887a..e0740d1013 100755 --- a/make/make_emakefile.in +++ b/make/make_emakefile.in @@ -1,4 +1,4 @@ -#!@PERL@ +#!/usr/bin/env @PERL@ # -*- cperl -*- use strict; |