Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Do make clean before building openssl in linux
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrekV committed Feb 5, 2018
1 parent ab2194c commit 4a0cd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ ifeq ($(osname), mac)
cd $(openssldir) && ./config -fPIC no-shared no-dso && ./Configure darwin64-x86_64-cc && make $(LEGACYMACOSSDK)
endif
ifeq ($(osname), linux)
cd $(openssldir) && ./config -fPIC shared no-dso && make
cd $(openssldir) && ./config -fPIC shared no-dso && make clean && make
endif
ifeq ($(osname), windows)
cd $(openssldir) && ./config shared no-dso && ./Configure Cygwin && make
Expand Down

0 comments on commit 4a0cd14

Please sign in to comment.