diff options
author | Keith Packard <keithp@koto.keithp.com> | 2007-10-24 21:47:40 -0700 |
---|---|---|
committer | Keith Packard <keithp@koto.keithp.com> | 2007-10-24 21:47:40 -0700 |
commit | d50cfeb805f7dec304c1d51d7a7c1c35f55d2e68 (patch) | |
tree | 0f441d329d7c4a1e1dc290152f6c9eb88e01c228 /fc-case | |
parent | 1bd0b5ba7365fc7b4ef39e46efc66a6f25c052c5 (diff) |
Leave generated headers out of distribution (bug 12734).
If the generated header files are included in the distribution, a build
outside of the source directory will use them. For machine-specific files,
this generates the wrong result (fcarch.h). Leaving them out of the
distribution forces them to be built.
Diffstat (limited to 'fc-case')
-rw-r--r-- | fc-case/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fc-case/Makefile.am b/fc-case/Makefile.am index e498da0f..83ca2de6 100644 --- a/fc-case/Makefile.am +++ b/fc-case/Makefile.am @@ -34,8 +34,6 @@ TARG=fccase.h noinst_PROGRAMS=fc-case -noinst_HEADERS=$(TARG) - noinst_MANS=fc-case.man fc_case_SRCS= \ @@ -54,7 +52,7 @@ $(TARG): $(STMPL) fc-case$(EXEEXT) $(SCASEFOLDING) ALIAS_FILES = fcalias.h fcaliastail.h -BUILT_SOURCES = $(ALIAS_FILES) +BUILT_SOURCES = $(ALIAS_FILES) $(TARG) $(ALIAS_FILES): touch $(ALIAS_FILES) |