diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-13 15:21:57 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-13 15:21:57 +0200 |
commit | 2e69d645360ca3355341762da2087342b06ac5a8 (patch) | |
tree | 01c8b8d4513f97309306398a494547e22cea4d04 | |
parent | ec8ce55942fd4a978be36aa14e4efcf804c908ce (diff) |
Filter out duplicate files
-rw-r--r-- | libcommon/common/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcommon/common/makefile b/libcommon/common/makefile index dc1a324..27e0bf2 100644 --- a/libcommon/common/makefile +++ b/libcommon/common/makefile @@ -84,7 +84,7 @@ $(dist): export sources := $(sources_dist) $(cli_tun:.cli=.cxx) $(dist): headers_dist = $(subst $(src_base)/,,$(shell find $(src_base) \ -name '*.hxx' -o -name '*.ixx' -o -name '*.txx')) $(dist): gen_headers := $(cli_tun:.cli=.hxx) $(cli_tun:.cli=.ixx) -$(dist): export headers = $(headers_dist) $(gen_headers) +$(dist): export headers = $(sort $(headers_dist) $(gen_headers)) $(dist): gen_dist := $(gen) $(dist): data_dist := $(cli_tun) config.h.in $(dist): export extra_dist := $(data_dist) $(call vc9projs,libcommon) \ |