ObjFW  Check-in [63fae0d8d2]

Overview
Comment:Update buildsys
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 63fae0d8d22c0247025cba8d33979753b3ab79e90e1427d9522b84c0383188a9
User & Date: js on 2022-08-07 21:10:34
Other Links: manifest | tags
Context
2022-08-07
21:20
objfw-new: Add --superclass check-in: 64b0f552c1 user: js tags: trunk
21:10
Update buildsys check-in: 63fae0d8d2 user: js tags: trunk
21:00
README.md: Use new objfw-new syntax check-in: 31066af476 user: js tags: trunk
Changes

Modified buildsys.mk.in from [a085f99653] to [b4df3b47e0].

769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
		${DIR_ENTER}; \
		${MAKE} -s uninstall || exit $$?; \
		${DIR_LEAVE}; \
	done

	for i in "" ${SHARED_LIB}; do \
		test x"$$i" = x"" && continue; \
		if test -f ${DESTDIR}${libdir}/$$i; then \
			if : @UNINSTALL_LIB@; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \
			fi \
		fi; \
	done







|







769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
		${DIR_ENTER}; \
		${MAKE} -s uninstall || exit $$?; \
		${DIR_LEAVE}; \
	done

	for i in "" ${SHARED_LIB}; do \
		test x"$$i" = x"" && continue; \
		if test -f ${DESTDIR}${libdir}/$$i -o -f ${DESTDIR}${bindir}/$$i; then \
			if : @UNINSTALL_LIB@; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \
			fi \
		fi; \
	done