Skip to content

Commit

Permalink
Fix list of dependencies for archlinux builds (#628)
Browse files Browse the repository at this point in the history
For archlinux builds install `base-devel` metapackage instead of
individual tools. This fixes the build error triggered by missing
`debugedit` tool:

```
==> ERROR: Cannot find the debugedit binary required for including source files in debug packages.
```

`base-devel` metapackage contains following packages (as the time of
writing):
```
$ pacman -Qi base-devel | grep Depends
Depends On      : archlinux-keyring  autoconf  automake  binutils  bison  debugedit  fakeroot  file  findutils  flex  gawk  gcc  gettext  grep  groff  gzip  libtool  m4  make  pacman  patch  pkgconf  sed  sudo  texinfo  which
```
  • Loading branch information
kobajagi authored Aug 14, 2024
1 parent 12a8394 commit 1b0b0af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
shell: bash

- name: install tools
run: pacman --noconfirm -Sy git openssh glibc sudo binutils make gcc pkg-config fakeroot go which
run: pacman --noconfirm -Sy base-devel git openssh glibc go
shell: bash

- name: release
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Bug Fixes

- Fix list of dependencies for archlinux builds #628

## 1.78.6

### Bug Fixes
Expand Down

0 comments on commit 1b0b0af

Please sign in to comment.