buildsys  Check-in [9085352444]

Overview
Comment:Fix handling of empty DEPS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 908535244490c2b8c2ca63e80c8e38f326e06f9f0344ec31092871fcbad173d0
User & Date: js on 2021-01-01 15:58:47
Other Links: manifest | tags
Context
2021-01-13
17:31
Add support for HP-UX (Itanium) check-in: 867bf6b44c user: js tags: trunk
2021-01-01
15:58
Fix handling of empty DEPS check-in: 9085352444 user: js tags: trunk
15:49
Delete .sl file before symlinking to it check-in: 944247deeb user: js tags: trunk
Changes

Modified buildsys.mk.in from [7fdb30e874] to [b068b3ae0b].

146
147
148
149
150
151
152
153


154
155
156
157
158
159
160
146
147
148
149
150
151
152

153
154
155
156
157
158
159
160
161







-
+
+







		${DIR_ENTER}; \
		${MAKE} -s || exit $$?; \
		${DIR_LEAVE}; \
	done

depend: pre-depend
	: >.deps
	for i in ${DEPS}; do \
	for i in "" ${DEPS}; do \
		test x"$$i" = x"" && continue; \
		echo "-include \$${.CURDIR}/$$i" >>.deps; \
	done

pre-depend:

${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS} ${OBJS_EXTRA}
	${LINK_STATUS}