diff options
author | Peter <pva@gentoo.org> | 2008-06-22 09:21:05 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-06-22 09:22:04 -0700 |
commit | 0e21b5a4d5609a5dd0f332b412d878b6f1037d29 (patch) | |
tree | 86bca24610036fad9c360862aa6386c82b15ab93 /fc-case | |
parent | a93b4c2aab1d79573abd646147596a8a34b19350 (diff) |
Make sure alias files are built first (bug 16464)
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'fc-case')
-rw-r--r-- | fc-case/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fc-case/Makefile.am b/fc-case/Makefile.am index d4fa12d8..e1e30465 100644 --- a/fc-case/Makefile.am +++ b/fc-case/Makefile.am @@ -36,6 +36,8 @@ noinst_PROGRAMS=fc-case noinst_MANS=fc-case.man +noinst_HEADERS=$(TARG) + fc_case_SRCS= \ fc-case.c \ fccaseint.h \ @@ -52,7 +54,7 @@ $(TARG): $(STMPL) fc-case$(EXEEXT) $(SCASEFOLDING) ALIAS_FILES = fcalias.h fcaliastail.h -BUILT_SOURCES = $(ALIAS_FILES) $(TARG) +BUILT_SOURCES = $(ALIAS_FILES) $(ALIAS_FILES): touch $(ALIAS_FILES) |