diff options
author | Karl Berry <karl@freefriends.org> | 2008-05-31 00:42:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-05-31 00:42:03 +0000 |
commit | e89d23f10da425a790a08e78a02c8c760bfe4613 (patch) | |
tree | 47253b67e467cefdb4ef48129feb0d76c9617391 /Build | |
parent | da9fd1a6c0bfe9d4bcfabaa1ca801a670eef24e2 (diff) |
stupidly forgot to install basic_engines; hey, no one cares about tex/mf/mpost, right :)?
git-svn-id: svn://tug.org/texlive/trunk@8424 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/Makefile.in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 23317f1aeaf..8b522b5dcb3 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,8 @@ +2008-05-31 Karl Berry <karl@tug.org> + + * Makefile.in (install-programs): stupidly forgot to install + $(basic_engines). + 2008-05-28 Karl Berry <karl@tug.org> * Makefile.in (basic_engines): split off tex/mf[n]/mpost. diff --git a/Build/source/texk/web2c/Makefile.in b/Build/source/texk/web2c/Makefile.in index a8ac7643eab..7bb63a08a7b 100644 --- a/Build/source/texk/web2c/Makefile.in +++ b/Build/source/texk/web2c/Makefile.in @@ -839,7 +839,8 @@ $(web2cdir):: # add to this target via a dependency-only rule, to install their # respective engines. install-programs: $(programs) $(basic_engines) $(bindir) - for p in $(programs); do $(INSTALL_LIBTOOL_PROG) $$p $(bindir); done + for p in $(programs) $(basic_engines); do \ + $(INSTALL_LIBTOOL_PROG) $$p $(bindir); done # We do not attempt to install any of the per-format symlinks, leaving # that to a separate run of texlinks. |