all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nikita Karetnikov <nikita@karetnikov.org>
To: bug-guix@gnu.org
Subject: GNU Prolog: configure: error: cannot run /bin/sh ./config.sub
Date: Wed, 30 Jan 2013 16:11:27 -0500	[thread overview]
Message-ID: <87d2wm9y0u.fsf@karetnikov.org> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 439 bytes --]

Hi,

The attached recipe fails with the following error:

patch-shebang: ./src/config.sub: changing `/bin/sh' to `/nix/store/4mg8b8vvmava68y64qmm70gqfnhhjzmx-bash-4.2/bin/sh'

[...]

configure: error: cannot run /bin/sh ./config.sub

However, these commands don't raise any errors.

# cd /tmp/nix-build-gprolog-1.4.2.drv-11
# source environment-variables
# cd */src
# ./configure && make && make check

[...]

All tests succeeded

Nikita


[-- Attachment #1.2: gprolog.scm --]
[-- Type: text/plain, Size: 2838 bytes --]

;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages gprolog)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public gprolog
  (package
    (name "gprolog")
    (version "1.4.2")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "http://www.gprolog.org/gprolog-"
                          version ".tar.gz"))
      (sha256
       (base32
        "0y25c2gwz41i6g28qyfjklrmanzgk0c8cr4jn2s7s8qgd9dnm1fm"))))
    (build-system gnu-build-system)
    (arguments `(#:phases (alist-replace
                           'configure
                           (lambda _
                             (zero? (system "cd src && ./configure")))
                           %standard-phases)))
    (home-page
     "http://www.gnu.org/software/gprolog/")
    (synopsis
     "GNU Prolog, a free Prolog compiler with constraint solving over
finite domains")
    (description
     "GNU Prolog is a free Prolog compiler with constraint solving over
finite domains developed by Daniel Diaz.

GNU Prolog accepts Prolog+constraint programs and produces native
binaries (like gcc does from a C source).  The obtained executable is
then stand-alone.  The size of this executable can be quite small since
GNU Prolog can avoid to link the code of most unused built-in
predicates.  The performances of GNU Prolog are very
encouraging (comparable to commercial systems).

Beside the native-code compilation, GNU Prolog offers a classical
interactive interpreter (top-level) with a debugger.

The Prolog part conforms to the ISO standard for Prolog with many
extensions very useful in practice (global variables, OS interface,
sockets,...).

GNU Prolog also includes an efficient constraint solver over Finite
Domains (FD).  This opens contraint logic programming to the user
combining the power of constraint programming to the declarativity of
logic programming.")
    (license '(gpl2+ lgpl3+))))

[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]

             reply	other threads:[~2013-01-30 21:11 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-30 21:11 Nikita Karetnikov [this message]
2013-01-30 21:16 ` GNU Prolog: configure: error: cannot run /bin/sh ./config.sub Andreas Enge
2013-01-31  5:24   ` [PATCH] gnu: Add GNU Prolog. (was: GNU Prolog: configure: error: cannot run /bin/sh ./config.sub) Nikita Karetnikov
2013-01-31  9:13     ` [PATCH] gnu: Add GNU Prolog Ludovic Courtès
2013-02-01 16:31       ` Nikita Karetnikov
2013-02-01 16:59         ` Ludovic Courtès
2013-01-31  9:22     ` [PATCH] gnu: Add GNU Prolog. (was: GNU Prolog: configure: error: cannot run /bin/sh ./config.sub) Andreas Enge
2013-01-30 22:06 ` GNU Prolog: configure: error: cannot run /bin/sh ./config.sub Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d2wm9y0u.fsf@karetnikov.org \
    --to=nikita@karetnikov.org \
    --cc=bug-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.