Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 384351 | Differences between
and this patch

Collapse All | Expand All

(-)xen-tools.orig//xen-tools-3.4.2-r4.ebuild (+1 lines)
Lines 62-67 Link Here
62
	"${FILESDIR}/${P}-fix-definitions.patch"
62
	"${FILESDIR}/${P}-fix-definitions.patch"
63
	"${FILESDIR}/${P}-fix-include.patch"
63
	"${FILESDIR}/${P}-fix-include.patch"
64
	"${FILESDIR}/${P}-werror-idiocy-v2.patch"
64
	"${FILESDIR}/${P}-werror-idiocy-v2.patch"
65
	"${FILESDIR}/${P}-ldflags.patch"
65
)
66
)
66
67
67
# hvmloader is used to bootstrap a fully virtualized kernel
68
# hvmloader is used to bootstrap a fully virtualized kernel
(-)xen-3.4.2.orig//tools/fs-back/Makefile (-1 / +1 lines)
Lines 23-29 Link Here
23
all: $(IBIN)
23
all: $(IBIN)
24
24
25
fs-backend: $(OBJS) fs-backend.c
25
fs-backend: $(OBJS) fs-backend.c
26
	$(CC) $(CFLAGS) -o fs-backend $(OBJS) $(LIBS) fs-backend.c
26
	$(CC) $(CFLAGS) $(LDFLAGS) -o fs-backend $(OBJS) $(LIBS) fs-backend.c
27
27
28
install: all
28
install: all
29
	$(INSTALL_PROG) $(IBIN) $(DESTDIR)$(SBINDIR)
29
	$(INSTALL_PROG) $(IBIN) $(DESTDIR)$(SBINDIR)
(-)xen-3.4.2.orig//tools/libfsimage/common/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
6
7
LDFLAGS-$(CONFIG_SunOS) = -Wl,-M -Wl,mapfile-SunOS
7
LDFLAGS-$(CONFIG_SunOS) = -Wl,-M -Wl,mapfile-SunOS
8
LDFLAGS-$(CONFIG_Linux) = -Wl,mapfile-GNU
8
LDFLAGS-$(CONFIG_Linux) = -Wl,mapfile-GNU
9
LDFLAGS = $(LDFLAGS-y)
9
#LDFLAGS = $(LDFLAGS-y)
10
10
11
LIB_SRCS-y = fsimage.c fsimage_plugin.c fsimage_grub.c
11
LIB_SRCS-y = fsimage.c fsimage_plugin.c fsimage_grub.c
12
12
(-)xen-3.4.2.orig//tools/misc/lomount/Makefile (-1 / +1 lines)
Lines 23-27 Link Here
23
	$(RM) *.a *.so *.o *.rpm $(BIN)
23
	$(RM) *.a *.so *.o *.rpm $(BIN)
24
24
25
%: %.c $(HDRS) Makefile
25
%: %.c $(HDRS) Makefile
26
	$(CC) $(CFLAGS) -o $@ $< 
26
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< 
27
27

Return to bug 384351