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 /lib/public_key/priv/generate | |
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 'lib/public_key/priv/generate')
-rwxr-xr-x | lib/public_key/priv/generate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public_key/priv/generate b/lib/public_key/priv/generate index fd185bfd52..69bb2263f4 100755 --- a/lib/public_key/priv/generate +++ b/lib/public_key/priv/generate @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Generate ssh moduli files for the sizes in $moduli |