forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure tsget and c_rehash are named with .pl suffix on Windows and…
… 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
Showing
2 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |