From 2da3e0c38d6ca1aa134c9b1f5aee03a4030fc004 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Tue, 17 May 2016 16:05:48 +0300 Subject: 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 --- lib/public_key/priv/generate | 2 +- make/make_emakefile | 2 +- 2 files changed, 2 insertions(+), 2 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 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; -- cgit v1.2.3