diff options
author | Karl Berry <karl@freefriends.org> | 2024-01-06 01:25:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-01-06 01:25:26 +0000 |
commit | 0095816c221429bc0b76f90591ddf66fbef832a1 (patch) | |
tree | 25b9a2bd2ac0502571d51ff2df0937f4e2c71c2a /Build | |
parent | df79bdb86ffc7d0efa967e9e6b1ebf4188666291 (diff) |
remove spurious \ escape in sed command
git-svn-id: svn://tug.org/texlive/trunk@69315 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/utils/xindy/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/utils/xindy/Makefile.am | 2 | ||||
-rw-r--r-- | Build/source/utils/xindy/Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/Build/source/utils/xindy/ChangeLog b/Build/source/utils/xindy/ChangeLog index fb89f1c500f..dd876e6c096 100644 --- a/Build/source/utils/xindy/ChangeLog +++ b/Build/source/utils/xindy/ChangeLog @@ -1,3 +1,9 @@ +2024-01-06 Karl Berry <karl@tug.org> + + * Makefile.am (%.pl): @ not \@ in sed command. + Report from Peter Dyballa, + https://tug.org/pipermail/tlbuild/2024q1/005351.html + 2021-07-10 Karl Berry <karl@freefriends.org> * xindy-src/user-commands/xindy.in: append TL svn revision to diff --git a/Build/source/utils/xindy/Makefile.am b/Build/source/utils/xindy/Makefile.am index d7e423224fc..4b4143a1f46 100644 --- a/Build/source/utils/xindy/Makefile.am +++ b/Build/source/utils/xindy/Makefile.am @@ -55,7 +55,7 @@ texmfdir = $(datarootdir)/$(scriptsdir) nodist_texmf_SCRIPTS = $(perl_scripts:=.pl) %.pl: $(XINDY_TREE)/user-commands/%.in - $(AM_V_GEN)sed -e 's:@is_TL\@:yes:' $< >$@ + $(AM_V_GEN)sed -e 's:@is_TL@:yes:' $< >$@ $(AM_V_at)chmod +x $@ CLEANFILES = $(nodist_bin_SCRIPTS) $(nodist_texmf_SCRIPTS) diff --git a/Build/source/utils/xindy/Makefile.in b/Build/source/utils/xindy/Makefile.in index 67490d5e884..1a7d980605c 100644 --- a/Build/source/utils/xindy/Makefile.in +++ b/Build/source/utils/xindy/Makefile.in @@ -984,7 +984,7 @@ uninstall-hook: uninstall-links @CLISP_RUNTIME_TRUE@ rm -f "$(DESTDIR)$(bindir)/$(XINDY_RUN)" %.pl: $(XINDY_TREE)/user-commands/%.in - $(AM_V_GEN)sed -e 's:@is_TL\@:yes:' $< >$@ + $(AM_V_GEN)sed -e 's:@is_TL@:yes:' $< >$@ $(AM_V_at)chmod +x $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. |