From ba4ca975d82075fb761c932144f6dea1bc93e0c5 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Thu, 28 Mar 2024 11:47:02 -0400 Subject: [PATCH] fix(coreutils) closes #5725 --- projects/gnu.org/coreutils/package.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/projects/gnu.org/coreutils/package.yml b/projects/gnu.org/coreutils/package.yml index d2816da7..67f84772 100644 --- a/projects/gnu.org/coreutils/package.yml +++ b/projects/gnu.org/coreutils/package.yml @@ -90,7 +90,6 @@ provides: - bin/sort - bin/split - bin/stat - - bin/stdbuf - bin/stty - bin/sum - bin/sync @@ -118,8 +117,12 @@ provides: - bin/yes build: - script: | - ./configure --prefix={{ prefix }} - make --jobs {{ hw.concurrency }} install + script: + - ./configure --prefix={{ prefix }} + - make --jobs {{ hw.concurrency }} install + env: + FORCE_UNSAFE_CONFIGURE: 1 # some gha runners run as root -test: test "$(ls -1)" = "xyz.tea.test.sh" +test: + - touch test-file + - test "$(ls -1)" = "test-file"