build-sys: fix rule for generating undefined list

This commit is contained in:
Lennart Poettering 2013-11-08 18:10:51 +01:00
parent 4aa2beacb1
commit f842cd74ea

View file

@ -4587,7 +4587,7 @@ defined: $(ALL_OBJECTS)
nm -g --undefined-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
done | cut -c 20- | cut -d @ -f 1 | sort -u > $(builddir)/undefined
undefined:
undefined: $(ALL_OBJECTS)
$(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
nm -g --defined-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
done | cut -c 20- | cut -d @ -f 1 | sort -u > $(builddir)/defined