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

(-)./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)
(-)./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
(-)./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