Skip to content

Commit d85d08c

Browse files
committed
One last fix to Makefile
Summary: Based on comment from D37455 Test Plan: make install after make static_lib Reviewers: meyering Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D37461
1 parent 2db96dc commit d85d08c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ install-shared: install-headers $(SHARED4)
836836

837837
# install static by default + install shared if it exists
838838
install: install-static
839-
[ ! -e $(SHARED4) ] || $(MAKE) install-shared
839+
[ -e $(SHARED4) ] && $(MAKE) install-shared || :
840840

841841
#-------------------------------------------------
842842

0 commit comments

Comments
 (0)