Skip to content

Commit ee39b35

Browse files
authored
Merge pull request #9522 from oech3/no-wget
Remove wget dep
2 parents 1a11254 + 994d07b commit ee39b35

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/GnuTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ jobs:
239239
- name: Install dependencies in VM
240240
run: |
241241
lima sudo dnf -y update
242-
lima sudo dnf -y install git autoconf autopoint bison texinfo gperf gcc gdb jq libacl-devel libattr-devel libcap-devel libselinux-devel attr rustup clang-devel texinfo-tex wget automake patch quilt
242+
lima sudo dnf -y install git autoconf autopoint bison texinfo gperf gcc gdb jq libacl-devel libattr-devel libcap-devel libselinux-devel attr rustup clang-devel texinfo-tex automake patch quilt
243243
lima rustup-init -y --default-toolchain stable
244244
- name: Copy the sources to VM
245245
run: |

DEVELOPMENT.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,6 @@ brew install \
291291
coreutils \
292292
autoconf \
293293
gettext \
294-
wget \
295294
texinfo \
296295
xz \
297296
automake \

util/build-gnu.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ if test -f gnu-built; then
131131
else
132132
# Disable useless checks
133133
"${SED}" -i 's|check-texinfo: $(syntax_checks)|check-texinfo:|' doc/local.mk
134+
"${SED}" -i '/^wget.*/d' bootstrap.conf # wget is used to DL po. Remove the dep.
134135
./bootstrap --skip-po
135136
# Use CFLAGS for best build time since we discard GNU coreutils
136137
CFLAGS="${CFLAGS} -pipe -O0 -s" ./configure --quiet --disable-gcc-warnings --disable-nls --disable-dependency-tracking --disable-bold-man-page-references \

0 commit comments

Comments
 (0)