buildsys  Check-in [e2d56e07c9]

Overview
Comment:Fix make install

I accidentally left this code in before committing.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: e2d56e07c919eb16f34125c66d9c5d8aec694f3e3af28b5493369e58366dca88
User & Date: js on 2024-05-05 00:54:30
Other Links: manifest | tags
Context
2024-05-05
00:54
Fix make install Leaf check-in: e2d56e07c9 user: js tags: trunk
00:40
Update autogen.sh check-in: e98b322ac4 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}; \