Denis 'GNUtoo' Carikli
5ab7f768d6
The target server (anthea) where the images will now be deployed doesn't have autoconf, automake and m4 installed. Because of that we work around by using the Guix versions. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
14 lines
564 B
Bash
Executable file
14 lines
564 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
#
|
|
# This file 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this file. If not, see <http://www.gnu.org/licenses/>.
|
|
guix shell -C \
|
|
autoconf automake coreutils grep m4 sed \
|
|
-- \
|
|
autoreconf -fi $@
|