libselinux: set DISABLE_RPM default to y.

Change the default build behavior to always use DISABLE_RPM.
To get the old behavior call make with DISABLE_RPM=n.

eg.)
make DISABLE_RPM=n

Signed-off-by: William Roberts <william.c.roberts@intel.com>
This commit is contained in:
William Roberts 2016-09-28 12:00:24 -04:00 committed by Stephen Smalley
parent 9b3e18ed4d
commit b67fefd991
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
SUBDIRS = src include utils man
DISABLE_SETRANS ?= n
DISABLE_RPM ?= n
DISABLE_RPM ?= y
ifeq ($(DISABLE_RPM),y)
DISABLE_FLAGS+= -DDISABLE_RPM
endif