diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-10-04 15:41:38 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-10-04 15:41:38 +0000 |
commit | 3817bdb7c9936db23e18b74cf16fb234c1957a32 (patch) | |
tree | 04a776540153c27aed626b361f0c381c3981c675 /Build/source/texk/web2c/luatexdir | |
parent | 37b29e92d678aeb977a53c3ec164cac174fb282e (diff) |
Bug fix: Make sure that 'make distcheck' removes all generated files
but keeps all distributed ones
git-svn-id: svn://tug.org/texlive/trunk@24189 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/ChangeLog | 3 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/am/txt2zlib.am | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog index 1400bbc68a5..80099dff764 100644 --- a/Build/source/texk/web2c/luatexdir/ChangeLog +++ b/Build/source/texk/web2c/luatexdir/ChangeLog @@ -2,6 +2,9 @@ * am/libluatex.am: Avoid to `clean' ../mplibdir/lmplib.c. + * am/txt2zlib.am (noinst_PROGRAMS): Conditionally add txt2zlib, + such that txt2zlib$(EXEEXT) gets cleaned. + 2011-09-30 Peter Breitenlohner <peb@mppmu.mpg.de> * tex/printing.w (print_file_line): Bug fix: avoid uninitialized diff --git a/Build/source/texk/web2c/luatexdir/am/txt2zlib.am b/Build/source/texk/web2c/luatexdir/am/txt2zlib.am index 8f83b9c74c7..42bc7be964f 100644 --- a/Build/source/texk/web2c/luatexdir/am/txt2zlib.am +++ b/Build/source/texk/web2c/luatexdir/am/txt2zlib.am @@ -3,6 +3,11 @@ ## Copyright (C) 2010, 2011 Hartmut Henkel <hartmut@luatex.org> ## You may freely use, modify and/or distribute this file. +if LUATEX +if !cross +noinst_PROGRAMS += txt2zlib +endif !cross +endif LUATEX EXTRA_PROGRAMS += txt2zlib nodist_txt2zlib_SOURCES = txt2zlib.c @@ -13,4 +18,3 @@ txt2zlib_LDADD = $(ZLIB_LIBS) DISTCLEANFILES += txt2zlib.c - |