buildsys  Check-in [9cfe130fd5]

Overview
Comment:Delete existing .framework before installing it
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 9cfe130fd5532c67175e5fa232af49ffa9df71c6b335e50c41a15543d57229c8
User & Date: js on 2018-01-20 19:11:26
Other Links: manifest | tags
Context
2018-01-21
18:39
Update copyright check-in: 1821adf255 user: js tags: trunk
2018-01-20
19:11
Delete existing .framework before installing it check-in: 9cfe130fd5 user: js tags: trunk
16:47
Automatically build and (un)install .frameworks check-in: e112f36a3a user: js tags: trunk
Changes

Modified buildsys.mk.in from [f11a2878fc] to [e84a6fb17d].

695
696
697
698
699
700
701

702
703
704
705
706
707
708
709
			${INSTALL_FAILED}; \
		fi \
	done

	for i in "" ${FRAMEWORK}; do \
		test x"$$i" = x"" && continue; \
		${INSTALL_STATUS}; \

		if ${MKDIR_P} ${DESTDIR}${prefix}/Library/Frameworks && cp -R ${FRAMEWORK} ${DESTDIR}${prefix}/Library/Frameworks/${FRAMEWORK}; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi \
	done

	for i in "" ${STATIC_LIB} ${STATIC_PIC_LIB}; do \







>
|







695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
			${INSTALL_FAILED}; \
		fi \
	done

	for i in "" ${FRAMEWORK}; do \
		test x"$$i" = x"" && continue; \
		${INSTALL_STATUS}; \
		rm -fr ${DESTDIR}${prefix}/Library/Frameworks/$$i; \
		if ${MKDIR_P} ${DESTDIR}${prefix}/Library/Frameworks && cp -R $$i ${DESTDIR}${prefix}/Library/Frameworks/; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi \
	done

	for i in "" ${STATIC_LIB} ${STATIC_PIC_LIB}; do \