Commit 93f5da47 authored by Mike Frysinger's avatar Mike Frysinger

fix parallel build problems with the lib/ subdir and multiple targets that descend into it

parent 043b0faa
......@@ -179,8 +179,9 @@ libdir: version.h
i18ndir:
@$(MAKE) -C po
subdirs:
@for i in $(SUBDIRS); do $(MAKE) -C $$i || exit $$? ; done
# use libdir target for lib/ to avoid parallel build issues
subdirs: libdir
@for i in $(SUBDIRS:$(NET_LIB_PATH)/=); do $(MAKE) -C $$i || exit $$? ; done
ifconfig: $(NET_LIB) ifconfig.o
$(CC) $(LDFLAGS) -o ifconfig ifconfig.o $(NLIB) $(RESLIB)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment