Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CentOS6 Build fail #1743

Closed
fubarhouse opened this issue Aug 9, 2017 · 3 comments
Closed

CentOS6 Build fail #1743

fubarhouse opened this issue Aug 9, 2017 · 3 comments
Labels

Comments

@fubarhouse
Copy link

fubarhouse commented Aug 9, 2017

I did this

Built as per usual, tests are passing for 19 platforms, and failing via the same test on CentOS6

I expected the following

Pass on all similar platforms, but failed on CentOS6.

curl/libcurl version

Information not available - attempting to install curl-7.54.0 or above via make.

operating system

CentOS6

See the failing test (scroll to the bottom) https://travis-ci.org/fubarhouse/ansible-role-curl/jobs/261293779

Details of stderr:

    "stderr_lines": [
        "/bin/sh: ../src/mkhelp.pl: Permission denied", 
        "/usr/bin/iconv: conversion stopped due to problem in writing the output", 
        "make[1]: *** [tool_hugehelp.c] Error 126", 
        "make[1]: *** Deleting file `tool_hugehelp.c'", 
        "make: *** [all-recursive] Error 1"
    ], 

As this is passing on CentOS7 among other operating systems, how would I be able to either fix? If not a bug with the project, are there additional dependencies for this platform not already noted?

@jay
Copy link
Member

jay commented Aug 9, 2017

Try chmod +x src/mkhelp.pl. If that works I propose this:

From 0601b0c0af01c9234c5c99bd64756dbd724159a2 Mon Sep 17 00:00:00 2001
From: Jay Satiro <raysatiro@yahoo.com>
Date: Wed, 9 Aug 2017 02:59:18 -0400
Subject: [PATCH] mkhelp.pl: enable execute permission (chmod +x)

Fixes https://github.com/curl/curl/issues/1743
---
 src/mkhelp.pl | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 mode change 100644 => 100755 src/mkhelp.pl

diff --git a/src/mkhelp.pl b/src/mkhelp.pl
old mode 100644
new mode 100755
-- 
1.9.5.msysgit.1

@jay jay added the build label Aug 9, 2017
@bagder
Copy link
Member

bagder commented Aug 9, 2017

The configure script doesn't find perl, so it can't run mkhelp.pl at all... The easiest fix for this is to make sure perl is installed when you build curl, not only for the mkhelp script but for other parts as well.

@fubarhouse
Copy link
Author

That is now passing... As I am not overly familiar with perl conventions - at least I haven't been so for years I am sorry for wasting your time.

I thank you very much for the really quick response and resolution though!

jay added a commit that referenced this issue Aug 10, 2017
- Enable execute permission (chmod +x)

- Change interpreter to /usr/bin/env perl

Ref: #1743
@lock lock bot locked as resolved and limited conversation to collaborators May 6, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Development

No branches or pull requests

3 participants