From: Theodore Ts'o Date: Sat, 19 Mar 2005 04:50:32 +0000 (-0500) Subject: Fix clean target to remove tst_getsectsize. X-Git-Tag: E2FSPROGS-1_37~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06ce1f6b282f2c632b1aabbee07a103d1bc1fa69;p=thirdparty%2Fe2fsprogs.git Fix clean target to remove tst_getsectsize. Remove useless -DDEBUG when linking tst_getsectsize. --- diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index 4b2cfb9ec..35bd6c8b6 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,5 +1,7 @@ 2005-03-18 Theodore Ts'o + * Makefile.in: Fix clean target to remove tst_getsectsize. + * getsize.c (ext2fs_get_device_size): Check to see if the number of blocks is greater than 2**32 when we are doing a binary search to determine the device size. Thanks to Stephen diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index 689016ce4..a0e1c5fc0 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -218,7 +218,7 @@ tst_bitops: tst_bitops.o inline.o $(STATIC_LIBEXT2FS) tst_getsectsize: tst_getsectsize.o getsectsize.o $(STATIC_LIBEXT2FS) @echo " LD $@" @$(CC) -o tst_sectgetsize tst_getsectsize.o getsectsize.o \ - -DDEBUG $(STATIC_LIBEXT2FS) $(LIBCOM_ERR) + $(STATIC_LIBEXT2FS) $(LIBCOM_ERR) mkjournal: mkjournal.c $(STATIC_LIBEXT2FS) @echo " LD $@" @@ -258,8 +258,8 @@ uninstall:: clean:: $(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/* checker/* \ tst_badblocks tst_iscan ext2_err.et ext2_err.c ext2_err.h \ - tst_byteswap tst_ismounted tst_getsize mkjournal \ - ../libext2fs.a ../libext2fs_p.a ../libext2fs_chk.a + tst_byteswap tst_ismounted tst_getsize tst_sectgetsize \ + mkjournal ../libext2fs.a ../libext2fs_p.a ../libext2fs_chk.a mostlyclean:: clean distclean:: clean