diff options
author | Mike Frysinger | 2006-04-21 21:59:22 +0000 |
---|---|---|
committer | Mike Frysinger | 2006-04-21 21:59:22 +0000 |
commit | 10f55b1daed9ab17c594fa0598aeea8002a70afc (patch) | |
tree | 039c15416c00461efb87002e46cbe7ee94efe843 /util-linux | |
parent | 586ea61284a6ef90d4274b10f2e36e67e62973df (diff) | |
download | busybox-10f55b1daed9ab17c594fa0598aeea8002a70afc.zip busybox-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.
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/Makefile.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util-linux/Makefile.in b/util-linux/Makefile.in index d1ab73e..d12f9f2 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 |