aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-04-25 21:10:20 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-04-25 21:10:20 +0000
commit93751c8e3248c8f34d1c59b6a4b4ad94e85e655d (patch)
tree1bf848ee0310af83e7b0d82e80d10e960090c5c3 /plugins/giop
parent8300516bcb2bd8fb71bb59122c7223818a2facf9 (diff)
Replace the plugin linkage libs into PLUGIN_LIBS which is generated from the
top-level configure.in when running configure. svn path=/trunk/; revision=10699
Diffstat (limited to 'plugins/giop')
-rw-r--r--plugins/giop/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/giop/Makefile.am b/plugins/giop/Makefile.am
index 653d2b83f5..e6dff8df38 100644
--- a/plugins/giop/Makefile.am
+++ b/plugins/giop/Makefile.am
@@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal/GIOP subdissectors
#
-# $Id: Makefile.am,v 1.6 2004/04/14 22:13:25 obiot Exp $
+# $Id: Makefile.am,v 1.7 2004/04/25 21:07:18 obiot Exp $
#
# Copyright 2001, Ericsson Inc.
# Frank Singleton <frank.singleton@ericsson.com>
@@ -32,11 +32,11 @@ plugindir = @plugindir@
plugin_LTLIBRARIES = cosnaming.la coseventcomm.la
cosnaming_la_SOURCES = packet-cosnaming.c moduleinfo.h
cosnaming_la_LDFLAGS = -module -avoid-version
-cosnaming_la_LIBADD = -L../../epan -lethereal @GLIB_LIBS@
+cosnaming_la_LIBADD = @PLUGIN_LIBS@
coseventcomm_la_SOURCES = packet-coseventcomm.c moduleinfo.h
coseventcomm_la_LDFLAGS = -module -avoid-version
-coseventcomm_la_LIBADD = -L../../epan -lethereal @GLIB_LIBS@
+coseventcomm_la_LIBADD = @PLUGIN_LIBS@
# Libs must be cleared, or else libtool won't create a shared module.
# If your module needs to be linked against any particular libraries,