Skip to content

Commit 2f44c81

Browse files
committed
config: Turn into a simple wrapper
Now that Configure called config.pm's functions directly, the 'config' script doesn't have much else to do than to pass arguments. Reviewed-by: Tim Hudson <[email protected]> (Merged from openssl#11230)
1 parent e39795a commit 2f44c81

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

config

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
#! /usr/bin/env perl
2-
# -*- mode: perl; -*-
1+
#! /bin/sh
32
# Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
43
#
54
# Licensed under the Apache License 2.0 (the "License"). You may not use
65
# this file except in compliance with the License. You can obtain a copy
76
# in the file LICENSE in the source distribution or at
87
# https://www.openssl.org/source/license.html
98

10-
use lib "util/perl";
11-
use OpenSSL::config;
12-
OpenSSL::config::main();
9+
THERE=`dirname $0`
10+
exec "$THERE/Configure" "$@"

0 commit comments

Comments
 (0)