aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-21 21:59:22 +0000
committerMike Frysinger <vapier@gentoo.org>2006-04-21 21:59:22 +0000
commit10f55b1daed9ab17c594fa0598aeea8002a70afc (patch)
tree039c15416c00461efb87002e46cbe7ee94efe843
parent586ea61284a6ef90d4274b10f2e36e67e62973df (diff)
downloadbusybox-w32-10f55b1daed9ab17c594fa0598aeea8002a70afc.tar.gz
busybox-w32-10f55b1daed9ab17c594fa0598aeea8002a70afc.tar.bz2
busybox-w32-10f55b1daed9ab17c594fa0598aeea8002a70afc.zip
Jason Schoon writes: This makes the case where LFS is not defined, but fdisk is configured with large disk support use the pretty build rules.
-rw-r--r--util-linux/Makefile.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/util-linux/Makefile.in b/util-linux/Makefile.in
index d1ab73e8c..d12f9f24f 100644
--- a/util-linux/Makefile.in
+++ b/util-linux/Makefile.in
@@ -57,11 +57,7 @@ $(UTILLINUX_DIR)%.o: $(srcdir)/%.c
57 57
58ifneq ($(strip $(CONFIG_LFS)),y) 58ifneq ($(strip $(CONFIG_LFS)),y)
59ifeq ($(strip $(FDISK_SUPPORT_LARGE_DISKS)),y) 59ifeq ($(strip $(FDISK_SUPPORT_LARGE_DISKS)),y)
60
61$(UTILLINUX_DIR)fdisk.o: $(srcdir)/fdisk.c 60$(UTILLINUX_DIR)fdisk.o: $(srcdir)/fdisk.c
62 $(CC) $(CFLAGS) \ 61 $(compile.c) -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
63 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
64 $(EXTRA_CFLAGS) -c -o $@ $<
65
66endif 62endif
67endif 63endif