Merge pull request #32 from ire4ever1190/patch-1

Fix `install-shared` Make task
This commit is contained in:
Michael R Sweet 2022-06-09 09:46:23 -04:00 committed by GitHub
commit ed4e2fc38a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ install: $(TARGETS)
install-shared:
if test `uname` = Darwin; then \
$(MAKE) DSONAME="libpdfio.1.dylib" -$(MAKEFLAGS) install; \
else
else \
$(MAKE) DSONAME="libpdfio.so.1" -$(MAKEFLAGS) install; \
fi