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-10f55b1daed9ab17c594fa0598aeea8002a70afc.tar.gz
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
ifneq ($(strip $(CONFIG_LFS)),y)
ifeq ($(strip $(FDISK_SUPPORT_LARGE_DISKS)),y)
-
$(UTILLINUX_DIR)fdisk.o: $(srcdir)/fdisk.c
- $(CC) $(CFLAGS) \
- -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
- $(EXTRA_CFLAGS) -c -o $@ $<
-
+ $(compile.c) -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
endif
endif