From 4182dfb3d21d99b996c919c33a363d534bbbae39 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Mon, 31 Aug 2020 21:36:22 +0000 Subject: [PATCH] Makefile: Fix wrong name for .oc file FossilOrigin-Name: c256c8ae6e5446faeac368afcf7c55ea3f201d1906f9e9fd5852d8dd2b7c2233 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b10f540..86ff92b 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ include buildsys.mk include extra.mk install-extra: - i=ObjSQLite.oc; \ + i=ObjSQLite3.oc; \ packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \ ${INSTALL_STATUS}; \ if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \ @@ -22,7 +22,7 @@ install-extra: fi uninstall-extra: - i=ObjOpenSQLite.oc; \ + i=ObjSQLite3.oc; \ packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \ if test -f $$packagesdir/$$i; then \ if rm -f $$packagesdir/$$i; then \