diff --git a/resources/packages/src/release b/resources/packages/src/release index 596cd56..6a364c4 100755 --- a/resources/packages/src/release +++ b/resources/packages/src/release @@ -5,7 +5,7 @@ # # Copyright (C) 2020,2021,2022 Leah Rowe # Copyright (C) 2021 Ron Nazarov -# Copyright (C) 2023 Denis 'GNUtoo' Carikli +# Copyright (C) 2023,2024 Denis 'GNUtoo' Carikli # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -66,6 +66,16 @@ for modname in ${modlist}; do done for dir in ${modlist} ${dirlist}; do + # The i945-thinkpads-install-utilities package uses guix to build things. + # Because of that the build and download phases are the same because if guix + # has substitutes enabled, and if upstream has substitutes for what we + # build, guix only download the resulting binaries. Since nothing is built + # in the current directory and that everything happens through guix, after + # downloading and/or building the guix packages, the results are installed + # directly into the GNU Boot release directory. + if [ "${dir}" = "i945-thinkpads-install-utilities" ] ; then + continue + fi cp -R "${dir}/" "${srcdir}/" done