]> git.ipfire.org Git - thirdparty/hostap.git/commit
build: Fix dependency file inclusion
authorJohannes Berg <johannes.berg@intel.com>
Sun, 11 Oct 2020 19:24:34 +0000 (21:24 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 12 Oct 2020 08:05:16 +0000 (11:05 +0300)
commit154b18d950588c463806ac5b80ade189ea8eb9e7
tree2034f8d3030148274d590be5119d71ca85f0630f
parent79db311e89d8f662300e3bd62c7386428fb0a430
build: Fix dependency file inclusion

The objs.mk include changes for archive files broke things
completely and none of the dependency files (*.d) ever got
included, as the expansion there ended up empty.

Clearly, my mistake, I should've tested that better. As we
don't need the %.a files in the list there use filter-out
to remove them, rather than what I had lazily wanted to do,
which was trying to read %.d files for them. The filter-out
actually works, and avoids looking up files that can never
exist in the first place.

Fixes: 87098d3324e0 ("build: Put archive files into build/ folder too")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
src/objs.mk