git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] Fix probing for already installed Error.pm
@ 2006-06-30  5:09 Pavel Roskin
  2006-06-30  5:09 ` [PATCH 2/3] Delete manuals if compiling without docs Pavel Roskin
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Pavel Roskin @ 2006-06-30  5:09 UTC (permalink / raw)
  To: git

From: Pavel Roskin <proski@gnu.org>

Signed-off-by: Pavel Roskin <proski@gnu.org>
---

 perl/Makefile.PL |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/perl/Makefile.PL b/perl/Makefile.PL
index d401a66..b3fbb73 100644
--- a/perl/Makefile.PL
+++ b/perl/Makefile.PL
@@ -12,7 +12,7 @@ my %pm = ('Git.pm' => '$(INST_LIBDIR)/Gi
 
 # We come with our own bundled Error.pm. It's not in the set of default
 # Perl modules so install it if it's not available on the system yet.
-eval { require 'Error' };
+eval { require Error };
 if ($@) {
 	$pm{'Error.pm'} = '$(INST_LIBDIR)/Error.pm';
 }

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-06-30 18:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-30  5:09 [PATCH 1/3] Fix probing for already installed Error.pm Pavel Roskin
2006-06-30  5:09 ` [PATCH 2/3] Delete manuals if compiling without docs Pavel Roskin
2006-06-30  5:09 ` [PATCH 3/3] Make perl interface a separate package Pavel Roskin
2006-06-30  7:28 ` [PATCH 1/3] Fix probing for already installed Error.pm Junio C Hamano
2006-06-30  7:40   ` Junio C Hamano
2006-06-30 18:08     ` Pavel Roskin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).