ObjFW  Check-in [396d832ab9]

Overview
Comment:Update buildsys
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 396d832ab978a83fcf870196f5166c1c0ea86ea0eeddf8e745bbeba183feb51a
User & Date: js on 2024-05-05 00:55:33
Other Links: manifest | tags
Context
2024-05-05
08:37
Fix OFSCTPSocket on FreeBSD check-in: 580e5ab656 user: js tags: trunk
00:55
Update buildsys check-in: 396d832ab9 user: js tags: trunk
00:49
+[OFPlugin pathForName:]: Add fallback to .dylib check-in: 925c67cb45 user: js tags: trunk
Changes

Modified buildsys.mk.in from [78915595d6] to [9eda233348].

822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
822
823
824
825
826
827
828







829
830
831
832
833
834
835







-
-
-
-
-
-
-







		if ${MKDIR_P} ${DESTDIR}${plugindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${plugindir}/$$i; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi \
	done

	for i in "" ${BUNDLE}; do \
		if ${MKDIR_P} ${DESTDIR}${bundledir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bundledir}/$$i; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi \
	done
	for i in "" ${BUNDLE}; do \
		test x"$$i" = x"" && continue; \
		${INSTALL_STATUS}; \
		rm -fr ${DESTDIR}${bundledir}/$$i; \
		if ${MKDIR_P} ${DESTDIR}${bundledir} && \
		    cp -R $$i ${DESTDIR}${bundledir}/; then \
			${INSTALL_OK}; \