Skip to content

Commit 92898e2

Browse files
committed
fix(fuse2): force autopoint when makeconf.sh runs autoreconf
makeconf.sh copies gettext's config.rpath into the tree and then runs autoreconf -i, whose autopoint (gettext 1.0) refuses to overwrite the now "locally modified" file. autoreconf honours $AUTOPOINT, so run makeconf.sh with AUTOPOINT='autopoint --force'. Bump epoch. Signed-off-by: Mark McCormick <mark.mccormick@chainguard.dev> Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com> Export: a81ffd1d7c736c6717376edac2d2841e973ad17f
1 parent 04a5b21 commit 92898e2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

‎fuse2.yaml‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package:
22
name: fuse2
33
version: 2.9.9
4-
epoch: 54
4+
epoch: 55
55
description: A library that makes it possible to implement a filesystem in a userspace program.
66
copyright:
77
- license: GPL-2.0-only AND LGPL-2.1-only
@@ -46,7 +46,8 @@ pipeline:
4646

4747
- runs: |
4848
autopoint --force
49-
./makeconf.sh
49+
# gettext 1.0's autopoint won't overwrite the config.rpath makeconf.sh copies in
50+
AUTOPOINT='autopoint --force' ./makeconf.sh
5051
5152
- runs: |
5253
UDEV_RULES_PATH=/usr/lib/udev/rules.d \

0 commit comments

Comments
 (0)