476cd757b51ab26fe956c287c31c19c9c1f86710
hiram
  Wed Feb 20 18:19:12 2019 -0800
correct typo error in ifneq rule no redmine

diff --git src/inc/common.mk src/inc/common.mk
index aee647d..19fc8aa 100644
--- src/inc/common.mk
+++ src/inc/common.mk
@@ -80,31 +80,31 @@
     HG_INC+=-I${SSL_DIR}/include
 endif
 # on hgwdev, already using the static library with mysqllient.
 ifeq (${IS_HGWDEV},yes)
    L+=/usr/lib64/libssl.a /usr/lib64/libcrypto.a -lkrb5 -lk5crypto -ldl
 else
    ifneq ($(wildcard /opt/local/lib/libssl.a),)
        L+=/opt/local/lib/libssl.a
    else
      ifneq ($(wildcard /usr/lib/x86_64-linux-gnu/libssl.a),)
 	L+=/usr/lib/x86_64-linux-gnu/libssl.a
      else
 	L+=-lssl
      endif
    endif
-   ifneq (@(wildcard /opt/local/lib/libcrypto.a),)
+   ifneq ($(wildcard /opt/local/lib/libcrypto.a),)
        L+=/opt/local/lib/libcrypto.a
    else
        L+=-lcrypto
    endif
 endif
 
 # autodetect where libm is installed
 ifeq (${MLIB},)
   ifneq ($(wildcard /usr/lib64/libm.a),)
       MLIB=-lm
   endif
 endif
 ifeq (${MLIB},)
   MLIB=-lm
 endif