checkpolicy: drop libsepol dynamic link in checkpolicy
Checkpolicy was using the static link to libsepol, but also defining a dynamic link (that wasn't needed). This confuses gdb. Drop the dynamic link request. Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
2c4eca16dd
commit
1d274aca2d
|
@ -9,7 +9,7 @@ INCLUDEDIR ?= $(PREFIX)/include
|
||||||
CFLAGS ?= -g -Wall -O2 -pipe
|
CFLAGS ?= -g -Wall -O2 -pipe
|
||||||
override CFLAGS += -I$(INCLUDEDIR)
|
override CFLAGS += -I$(INCLUDEDIR)
|
||||||
|
|
||||||
LDLIBS=-lfl -lsepol -lselinux $(LIBDIR)/libsepol.a -L$(LIBDIR)
|
LDLIBS=-lfl -lselinux $(LIBDIR)/libsepol.a -L$(LIBDIR)
|
||||||
|
|
||||||
all: dispol dismod
|
all: dispol dismod
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue