Skip to content

Commit

Permalink
CI caught something I missed
Browse files Browse the repository at this point in the history
I've usually had maintainer mode on lately, so it reminded me that intl doesn't actually use -save-temps without it

Change-Id: I532ea396cf04a48ea8870f03a1d2f03586a76fd0
  • Loading branch information
cooljeanius committed Oct 27, 2023
1 parent b0bdf1b commit 4c89054
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/apple-gdb-1824-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
- run: brew install autogen objc-codegenutils objc-run objconv texi2html texinfo flex aarch64-elf-binutils arm-linux-gnueabihf-binutils arm-none-eabi-binutils binutils i686-elf-binutils riscv64-elf-binutils x86_64-elf-binutils x86_64-linux-gnu-binutils pax deja-gnu expect guile jimtcl osxutils dmalloc fastjar gdb gettext gperf help2man ant-contrib findutils grep coreutils remake bison byacc texlive gawk
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
HOMEBREW_VERBOSE: 1
HOMEBREW_VERBOSE_USING_DOTS: 1
- run: test -e ./.profile_generic && test -r ./.profile_generic && source ./.profile_generic
- run: ./configure --enable-silent-rules
- run: make -ki -C libcheckpoint || make -ki -C libcheckpoint -f Makefile_orig || make -ki -C macsbug || make -ki -C macsbug/gdb_plugin_support || (if test -x "$(which ant)"; then ant; fi)
Expand Down
2 changes: 1 addition & 1 deletion src/intl/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ libintl.la: $(LTOBJECTS) $(OBJECTS)
EXTRA_DIST += po/Makevars.in

check: all @MAINT@ config.status
ls *.i || ls *.s || ls *.bc
ls ./*.i || ls ./*.s || ls ./*.bc || ls
.PHONY: check

# This installation goal is only used in GNU gettext. Packages which
Expand Down
2 changes: 1 addition & 1 deletion src/intl/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ libintl.la: $(LTOBJECTS) $(OBJECTS)
cd ../po && $(MAKE) cat-id-tbl.o

check: all @MAINT@ config.status
ls *.i || ls *.s || ls *.bc
ls ./*.i || ls ./*.s || ls ./*.bc || ls
.PHONY: check

# This installation goal is only used in GNU gettext. Packages which
Expand Down

0 comments on commit 4c89054

Please sign in to comment.