diff options
author | alepulver <alepulver@FreeBSD.org> | 2007-02-27 03:47:49 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2007-02-27 03:47:49 +0800 |
commit | ce6a7eafabb670e883348ca998dfddf770256813 (patch) | |
tree | 17dcc24b00527afc9ec053b28b3183d6c7f8a1a5 /security | |
parent | 846aa5c46734057b651f6b1e0ff820a4b7f9ebc6 (diff) | |
download | freebsd-ports-graphics-ce6a7eafabb670e883348ca998dfddf770256813.tar.gz freebsd-ports-graphics-ce6a7eafabb670e883348ca998dfddf770256813.tar.zst freebsd-ports-graphics-ce6a7eafabb670e883348ca998dfddf770256813.zip |
- Avoid 'make' warning when libnids.a was not compiled with GLIB2 enabled.
Diffstat (limited to 'security')
-rw-r--r-- | security/dsniff/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/dsniff/Makefile b/security/dsniff/Makefile index 89d54d4cb81..7d19a38ce08 100644 --- a/security/dsniff/Makefile +++ b/security/dsniff/Makefile @@ -34,7 +34,7 @@ LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet10-config # the corresponding library and additional linker flags. LIBNIDS_GLIB2?= .if exists(${LOCALBASE}/lib/libnids.a) -LIBNIDS_GLIB2!= nm -u ${LOCALBASE}/lib/libnids.a | ${GREP} g_thread_init +LIBNIDS_GLIB2!= nm -u ${LOCALBASE}/lib/libnids.a | ${GREP} g_thread_init || ${TRUE} .endif .if !empty(LIBNIDS_GLIB2) |