diff options
author | Alexey Lebedeff <[email protected]> | 2016-05-17 16:05:48 +0300 |
---|---|---|
committer | Alexey Lebedeff <[email protected]> | 2016-05-17 16:08:34 +0300 |
commit | 2da3e0c38d6ca1aa134c9b1f5aee03a4030fc004 (patch) | |
tree | 6e77919e822f5671c97b2e19710594cca690cac9 /make/make_emakefile | |
parent | 0545c22c9c07c55569e067c57ec184f018a54947 (diff) | |
download | otp-2da3e0c38d6ca1aa134c9b1f5aee03a4030fc004.tar.gz otp-2da3e0c38d6ca1aa134c9b1f5aee03a4030fc004.tar.bz2 otp-2da3e0c38d6ca1aa134c9b1f5aee03a4030fc004.zip |
Fix program paths used in build process
Followup to https://github.com/erlang/otp/pull/1023
- make/make_emakefile is fixed because otherwise './otp_build tests'
fails early.
- And grep showed that there is only one other file that also should be
fixed - lib/public_key/priv/generate
Diffstat (limited to 'make/make_emakefile')
-rwxr-xr-x | make/make_emakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/make_emakefile b/make/make_emakefile index 80c4acae94..56440d9bf0 100755 --- a/make/make_emakefile +++ b/make/make_emakefile @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # -*- cperl -*- use strict; |