[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
error at "aclocal -I m4" during packaging
From: |
mbcladwell |
Subject: |
error at "aclocal -I m4" during packaging |
Date: |
Thu, 05 Nov 2020 10:23:06 -0600 |
User-agent: |
Horde Application Framework 5 |
Hi,
I am working with Artanis-4.1 on Guile-2.2.7 in a Guix protected environment.
I have a bug-fix branch of Artanis called artanis-fix-ssql.
I need to package artanis-fix-ssql for testing.
I tried to import the package recipe from artanis
------manifest.scm----------------------------------
(specifications->manifest
'("guile@2.2.7" "artanis" "coreutils" "gawk" "sed" "findutils"
"glibc" "grep" "openssl"
"guix" "automake" "autoconf" "libtool" "bzip2" "gcc-toolchain"
"gettext" "libgcrypt"
"pkg-config" "m4" "make"))
----------------------------------------------------
--------artanis-fix-ssql.scm------------------------
(use-modules
(guix packages)
(gnu)
(gnu packages)
(guix download)
(guix build-system gnu)
(guix licenses)
(guix store)
(gnu packages pkg-config)
(gnu packages guile-xyz)
(artanis artanis))
(define-public artanis-fix-ssql
(package (inherit artanis)
(name "artanis-fix-ssql")
(version "4.1")
(source (origin
(method url-fetch)
(uri
"https://gitlab.com/NalaGinrut/artanis/-/archive/fix/ssql/artanis-fix-ssql.tar.gz")
(sha256
(base32
"1lg2grj8qiw8hg0712qw1zldljg3mfph1m9nmgwyp11axgn18k99"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
(license gpl3+)
))
artanis-fix-ssql
----------------------------------------------------
$ guix environment --pure --manifest=manifest.scm
$ guix package --install-from-file=artanis-fix-ssql.scm
The build fails with the terminal output:
'bootstrap' phasebuilder for
`/gnu/store/z19wxyr945l8piq00fy6bbn400rj6i03-artanis-fix-ssql-4.1.drv'
failed with exit code 1
build of
/gnu/store/z19wxyr945l8piq00fy6bbn400rj6i03-artanis-fix-ssql-4.1.drv
failed
View build log at
'/var/log/guix/drvs/z1/9wxyr945l8piq00fy6bbn400rj6i03-artanis-fix-ssql-4.1.drv.bz2'.
cannot build derivation
`/gnu/store/klps0a6zb1fybc167kxyz95kpw2ad8lx-profile.drv': 1
dependencies couldn't be built
guix package: error: build of
`/gnu/store/klps0a6zb1fybc167kxyz95kpw2ad8lx-profile.drv' failed
The last few lines of the log file are:
running './autogen.sh'
patch-shebang: ./autogen.sh: changing `/bin/sh' to
`/gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/sh'
aclocal -I m4
make: aclocal: No such file or directory
make: *** [.Makefile.dist:5: configure] Error 127
command "./autogen.sh" failed with status 2
at the terminal:
$ echo $ACLOCAL_PATH
/usr/share/aclocal
Where did I go wrong?
Thanks
Mortimer
- error at "aclocal -I m4" during packaging,
mbcladwell <=