diff options
author | Patrick Steinhardt <ps@pks.im> | 2024-12-06 14:24:44 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-12-06 23:52:10 +0100 |
commit | ccfba9e0c45d85e980b3c83bf1e30bf4f1e25ccf (patch) | |
tree | 7ba5c0db75f0d457e37fe2c425dab638fa532503 /GIT-BUILD-OPTIONS.in | |
parent | Makefile: extract script to massage Perl scripts (diff) | |
download | git-ccfba9e0c45d85e980b3c83bf1e30bf4f1e25ccf.tar.xz git-ccfba9e0c45d85e980b3c83bf1e30bf4f1e25ccf.zip |
Makefile: use "generate-perl.sh" to massage Perl library
Extend "generate-perl.sh" such that it knows to also massage the Perl
library files. There are two major differences:
- We do not read in the Perl header. This is handled by matching on
whether or not we have a Perl shebang.
- We substitute some more variables, which we read in via our
GIT-BUILD-OPTIONS.
Adapt both our Makefile and the CMake build instructions to use this.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'GIT-BUILD-OPTIONS.in')
-rw-r--r-- | GIT-BUILD-OPTIONS.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GIT-BUILD-OPTIONS.in b/GIT-BUILD-OPTIONS.in index f0ca240493..050432f9fc 100644 --- a/GIT-BUILD-OPTIONS.in +++ b/GIT-BUILD-OPTIONS.in @@ -1,6 +1,8 @@ SHELL_PATH=@SHELL_PATH@ TEST_SHELL_PATH=@TEST_SHELL_PATH@ PERL_PATH=@PERL_PATH@ +PERL_LOCALEDIR=@PERL_LOCALEDIR@ +NO_PERL_CPAN_FALLBACKS=@NO_PERL_CPAN_FALLBACKS@ DIFF=@DIFF@ PYTHON_PATH=@PYTHON_PATH@ TAR=@TAR@ |