Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-28 23:40:15 +0400
committerRob Landley <rob@landley.net>2006-03-28 23:40:15 +0400
commitdbd91af0613652f37ddb04e47b9bca3411ae7526 (patch)
treeacef83de72fb61b77bf866f530f38afd15178406 /Rules.mak
parent92fff34de606c56a2011140d1915d507820a2f9d (diff)
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.
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak6
1 files changed, 1 insertions, 5 deletions
diff --git a/Rules.mak b/Rules.mak
index a70ef8cc5..6bf91b2d6 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -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)),)