Makefile: Fix wrong name for .oc file

FossilOrigin-Name: c256c8ae6e5446faeac368afcf7c55ea3f201d1906f9e9fd5852d8dd2b7c2233
This commit is contained in:
Jonathan Schleifer 2020-08-31 21:36:22 +00:00
parent a6a6c5b76a
commit 4182dfb3d2

View file

@ -12,7 +12,7 @@ include buildsys.mk
include extra.mk include extra.mk
install-extra: install-extra:
i=ObjSQLite.oc; \ i=ObjSQLite3.oc; \
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \ packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
${INSTALL_STATUS}; \ ${INSTALL_STATUS}; \
if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \ if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \
@ -22,7 +22,7 @@ install-extra:
fi fi
uninstall-extra: uninstall-extra:
i=ObjOpenSQLite.oc; \ i=ObjSQLite3.oc; \
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \ packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
if test -f $$packagesdir/$$i; then \ if test -f $$packagesdir/$$i; then \
if rm -f $$packagesdir/$$i; then \ if rm -f $$packagesdir/$$i; then \