Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-22 01:59:22 +0400
committerMike Frysinger <vapier@gentoo.org>2006-04-22 01:59:22 +0400
commit10f55b1daed9ab17c594fa0598aeea8002a70afc (patch)
tree039c15416c00461efb87002e46cbe7ee94efe843 /util-linux
parent586ea61284a6ef90d4274b10f2e36e67e62973df (diff)
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.
Diffstat (limited to 'util-linux')
-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