Skip to content

Commit

Permalink
Make sure tsget and c_rehash are named with .pl suffix on Windows and…
Browse files Browse the repository at this point in the history
… VMS

Especially on Windows, the .pl suffix is associated with the perl
interpreter, and therefore make those scripts usable as commands of
their own.  On VMS, it simply looks better.

Reviewed-by: Rich Salz <[email protected]>
  • Loading branch information
levitte committed May 23, 2016
1 parent 35b060f commit 34f5d44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 5 additions & 3 deletions apps/build.info
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{- use File::Spec::Functions qw/catdir rel2abs/; -}
{- use File::Spec::Functions qw/catdir rel2abs/;
our $tsget_name = $config{target} =~ /^(VC|vms)-/ ? "tsget.pl" : "tsget";
"" -}
IF[{- !$disabled{apps} -}]
PROGRAMS=openssl
SOURCE[openssl]=\
Expand All @@ -15,7 +17,7 @@ IF[{- !$disabled{apps} -}]
INCLUDE[openssl]={- rel2abs(catdir($builddir,"../include")) -} .. ../include
DEPEND[openssl]=../libssl

SCRIPTS=CA.pl tsget
SCRIPTS=CA.pl {- $tsget_name -}
SOURCE[CA.pl]=CA.pl.in
SOURCE[tsget]=tsget.in
SOURCE[{- $tsget_name -}]=tsget.in
ENDIF
7 changes: 5 additions & 2 deletions tools/build.info
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{- our $c_rehash_name =
$config{target} =~ /^(VC|vms)-/ ? "c_rehash.pl" : "c_rehash";
"" -}
IF[{- !$disabled{apps} -}]
SCRIPTS=c_rehash
SOURCE[c_rehash]=c_rehash.in
SCRIPTS={- $c_rehash_name -}
SOURCE[{- $c_rehash_name -}]=c_rehash.in
ENDIF

0 comments on commit 34f5d44

Please sign in to comment.