Skip to content

Commit

Permalink
Merge pull request #92 from jeroen/patch-1
Browse files Browse the repository at this point in the history
Fix typo in configure
  • Loading branch information
edzer authored Dec 16, 2020
2 parents bc2b76a + 3d5950f commit 08705d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fi
if [ -z "$AUTOBREW" ]; then
SONAME=`${CC} -E ${PKG_CFLAGS} src/tests/soname.h | sh | xargs`
if [ "$SONAME" ]; then
if [`uname` = "Darwin" ]; then
if [ `uname` = "Darwin" ]; then
PKG_LIBS_VERSIONED=`echo "${PKG_LIBS}" | sed "s/-lssl/-lssl.${SONAME}/" | sed "s/-lcrypto/-lcrypto.${SONAME}/"`
else
PKG_LIBS_VERSIONED=`echo "${PKG_LIBS}" | sed "s/-lssl/-l:libssl.so.${SONAME}/" | sed "s/-lcrypto/-l:libcrypto.so.${SONAME}/"`
Expand Down

0 comments on commit 08705d5

Please sign in to comment.