# New Ticket Created by  mohammed arafat Kamaal 
# Please include the string:  [perl #121072]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=121072 >



>From 7aced261936a8b5e807ccfc06b9c6174370ca741 Mon Sep 17 00:00:00 2001
From: kamaal <arafatkam...@gmail.com>
Date: Fri, 24 Jan 2014 06:04:40 +0000
Subject: [PATCH] Use the git protocol instead of https, as the build is
 breaking in systems where curl-devel packages are not
 installed(Or more importantly can't be installed, due to
 various reasons)

---
 tools/lib/NQP/Configure.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/lib/NQP/Configure.pm b/tools/lib/NQP/Configure.pm
index 000845e..86ee08c 100644
--- a/tools/lib/NQP/Configure.pm
+++ b/tools/lib/NQP/Configure.pm
@@ -29,9 +29,9 @@ our @required_nqp_files = qw(
     @bindir@/nqp-p@exe@
 );
 
-our $nqp_git = 'https://github.com/perl6/nqp.git';
-our $par_git = 'https://github.com/parrot/parrot.git';
-our $moar_git= 'https://github.com/MoarVM/MoarVM.git';
+our $nqp_git = 'git://github.com/perl6/nqp.git';
+our $par_git = 'git://github.com/parrot/parrot.git';
+our $moar_git= 'git://github.com/MoarVM/MoarVM.git';
 
 our $nqp_push = 'g...@github.com:perl6/nqp.git';
 our $par_push = 'g...@github.com:parrot/parrot.git';
-- 
1.7.12

Reply via email to