From: <mil...@us...> - 2008-03-07 15:30:25
|
Revision: 2844 http://selinux.svn.sourceforge.net/selinux/?rev=2844&view=rev Author: millertc Date: 2008-03-07 07:30:22 -0800 (Fri, 07 Mar 2008) Log Message: ----------- Now that the bulk of policy_parse.y has been split out into policy_define.c, the libsepol tests need to link in policy_define.o. Signed-off-by: Todd C. Miller <tm...@tr...> Acked-by: Stephen Smalley <sd...@ty...> Modified Paths: -------------- trunk/libsepol/tests/Makefile Modified: trunk/libsepol/tests/Makefile =================================================================== --- trunk/libsepol/tests/Makefile 2008-03-06 16:45:46 UTC (rev 2843) +++ trunk/libsepol/tests/Makefile 2008-03-07 15:30:22 UTC (rev 2844) @@ -16,8 +16,9 @@ # test program object files objs := $(patsubst %.c,%.o,$(wildcard *.c)) -parserobjs := $(CHECKPOLICY)queue.o $(CHECKPOLICY)y.tab.o $(CHECKPOLICY)parse_util.o $(CHECKPOLICY)lex.yy.o \ - $(CHECKPOLICY)module_compiler.o +parserobjs := $(CHECKPOLICY)queue.o $(CHECKPOLICY)y.tab.o \ + $(CHECKPOLICY)parse_util.o $(CHECKPOLICY)lex.yy.o \ + $(CHECKPOLICY)policy_define.o $(CHECKPOLICY)module_compiler.o # test policy pieces m4support := $(wildcard policies/support/*.spt) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |