diff options
author | Rob Landley <rob@landley.net> | 2006-03-28 19:40:15 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-28 19:40:15 +0000 |
commit | dbd91af0613652f37ddb04e47b9bca3411ae7526 (patch) | |
tree | acef83de72fb61b77bf866f530f38afd15178406 | |
parent | 92fff34de606c56a2011140d1915d507820a2f9d (diff) | |
download | busybox-dbd91af0613652f37ddb04e47b9bca3411ae7526.tar.gz |
Mike Frysinger pointed out we can go
CFLAGS=-I/usr/some/funky/path/to/selinux \
LDFLAGS=-L/usr/some/funky/path/to/selinux make
So Jan Kiszka reverted part of the selinux patch.
-rw-r--r-- | Rules.mak | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -210,11 +210,7 @@ endif ifeq ($(strip $(CONFIG_SELINUX)),y) - SELINUX_INC ?= /usr/include - SELINUX_LIB ?= /usr/lib - CFLAGS := -I$(SELINUX_INC) $(CFLAGS) - LDFLAGS := -L$(SELINUX_LIB) $(LDFLAGS) - LIBRARIES += -lselinux + LIBRARIES += -lselinux endif ifeq ($(strip $(PREFIX)),) |