Code

Git.pm: tentative fix to test the freshly built Git.pm
authorJunio C Hamano <junkio@cox.net>
Sun, 25 Jun 2006 02:41:03 +0000 (19:41 -0700)
committerJunio C Hamano <junkio@cox.net>
Mon, 3 Jul 2006 00:14:42 +0000 (17:14 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile
git-fmt-merge-msg.perl

index 1371e79df271e25845bd0dd0e9993a10b69119ff..9b9be592ae4e7b54762708918adcca5f30395ec6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -531,9 +531,12 @@ $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
        chmod +x $@+
        mv $@+ $@
 
-$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
+$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/Makefile
+$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
        rm -f $@ $@+
-       sed -e '1s|#!.*perl\(.*\)|#!$(PERL_PATH_SQ)\1 -I'"$$(make -s -C perl instlibdir)"'|' \
+       INSTLIBDIR=$$(make -s -C perl instlibdir) && \
+       sed -e '1s|#!.*perl\(.*\)|#!$(PERL_PATH_SQ)\1|' \
+           -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
            -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
            $@.perl >$@+
        chmod +x $@+
index f86231e14b0bf0d16ae3ac7978b824b3a994d359..e8fad02e757506e423b05b4a37fe3df8dba87ab2 100755 (executable)
@@ -5,6 +5,7 @@
 # Read .git/FETCH_HEAD and make a human readable merge message
 # by grouping branches and tags together to form a single line.
 
+unshift @INC, '@@INSTLIBDIR@@';
 use strict;
 use Git;
 use Error qw(:try);