mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 11:06:57 +01:00
make uninstall does not remove .so symlinks #1017
This commit is contained in:
parent
342c9a76cd
commit
4d4c857968
18
Makefile
18
Makefile
@ -102,11 +102,21 @@ install: libexecs
|
||||
fi ; \
|
||||
done
|
||||
ifeq ($(OSNAME), Cygwin)
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "cygPoco*" -type f -exec cp -f {} $(INSTALLDIR)/bin \;
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "cygPoco*" -type l -exec cp -Rf {} $(INSTALLDIR)/bin \;
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "cygPoco*" -type f -exec cp -f {} $(INSTALLDIR)/bin \;
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "cygPoco*" -type l -exec cp -Rf {} $(INSTALLDIR)/bin \;
|
||||
endif
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "libPoco*" -type f -exec cp -f {} $(INSTALLDIR)/lib \;
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "libPoco*" -type l -exec cp -Rf {} $(INSTALLDIR)/lib \;
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "libPoco*" -type f -exec cp -f {} $(INSTALLDIR)/lib \;
|
||||
find $(POCO_BUILD)/lib/$(OSNAME)/$(OSARCH) -name "libPoco*" -type l -exec cp -Rf {} $(INSTALLDIR)/lib \;
|
||||
|
||||
uninstall:
|
||||
[ -d $(INSTALLDIR)/include/Poco ] && rm -rf $(INSTALLDIR)/include/Poco || echo "No installed Poco headers found";
|
||||
[ -d $(INSTALLDIR)/include/CppUnit ] && rm -rf $(INSTALLDIR)/include/CppUnit || echo "No installed CppUnit headers found";
|
||||
ifeq ($(OSNAME), Cygwin)
|
||||
find $(INSTALLDIR)/bin -name "cygPoco*" -type f -exec rm -f {} \;
|
||||
find $(INSTALLDIR)/bin -name "cygPoco*" -type l -exec rm -f {} \;
|
||||
endif
|
||||
find $(INSTALLDIR)/lib -name "libPoco*" -type f -exec rm -f {} \;
|
||||
find $(INSTALLDIR)/lib -name "libPoco*" -type l -exec rm -f {} \;
|
||||
|
||||
# -------------------------------------------------------------------------------------------------------------------------------------
|
||||
libexecs = Foundation-libexec XML-libexec JSON-libexec Util-libexec Net-libexec Crypto-libexec NetSSL_OpenSSL-libexec
|
||||
|
2
openssl
2
openssl
@ -1 +1 @@
|
||||
Subproject commit af3dfc6ca786061640f55618b022aa4a62dffb2e
|
||||
Subproject commit 26b1673caad94a702b6d694f48f917a283b30777
|
Loading…
Reference in New Issue
Block a user