On Sat, 2011-09-10 at 01:25 +0200, Guido Trentalancia wrote: > On Fri, 2011-09-09 at 19:15 -0400, Eric Paris wrote: > > > But why should libsepol/include be missing from git in the first > > > place ?? > > > > I agree that they must be in one or the other for it to build. A number > > of distros build these packages separately, rather than all at once. > > Thus there would be no ../libsepol/include directory at all, but the > > headers should be picked up by -I$(INCLUDEDIR). As long as gcc doesn't > > care that the directory doesn't exist, I actually like it. > > > > -Eric > > gcc should only care that at least one version of the file can be found > if #include'd. > > It still needs to be tested though. Can you try building the whole > userspace git using that patch ? I have just tested it again and I am still missing the following bit: --- selinux-09092011-orig2/policycoreutils/semodule/Makefile 2011-09-10 01:40:34.249189544 +0200 +++ selinux-09092011-local-headers/policycoreutils/semodule/Makefile 2011-09-10 01:36:48.420940938 +0200 @@ -7,7 +7,7 @@ LIBDIR ?= ${PREFIX}/lib CFLAGS ?= -Werror -Wall -W override CFLAGS += -I../../libsemanage/include -I$(INCLUDEDIR) -LDLIBS = -lsepol -lselinux -lsemanage -L$(LIBDIR) +LDLIBS = -L../../libselinux/src -L../../libsepol/src -L../../libsemanage/src -lsepol -lselinux -lsemanage SEMODULE_OBJS = semodule.o all: semodule --- selinux-09092011-orig2/policycoreutils/setsebool/Makefile 2011-09-10 01:40:34.252189479 +0200 +++ selinux-09092011-local-headers/policycoreutils/setsebool/Makefile 2011-09-10 01:37:39.281235631 +0200 @@ -7,7 +7,7 @@ LIBDIR ?= ${PREFIX}/lib CFLAGS ?= -Werror -Wall -W override CFLAGS += -I../../libselinux/include -I../../libsemanage/include -I$(INCLUDEDIR) -LDLIBS = -lsepol -lselinux -lsemanage -L$(LIBDIR) +LDLIBS = -L../../libselinux/src -L../../libsepol/src -L../../libsemanage/src -lsepol -lselinux -lsemanage SETSEBOOL_OBJS = setsebool.o all: setsebool > Regards, > > Guido -- This message was distributed to subscribers of the selinux mailing list. If you no longer wish to subscribe, send mail to majordomo@xxxxxxxxxxxxx with the words "unsubscribe selinux" without quotes as the message.