X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff_plain;f=lfs%2Fe2fsprogs;h=8fda71389f62fe057b908d429b0284a4902e10d8;hp=aacc0802f777c975401293d7c14c1c8a5cc774a4;hb=61424e9c67334f2940ec8be66612b0a6b4df7adb;hpb=c268e9f208b25f84a5ef5be0b90841f2166581ae diff --git a/lfs/e2fsprogs b/lfs/e2fsprogs index aacc0802f7..8fda71389f 100644 --- a/lfs/e2fsprogs +++ b/lfs/e2fsprogs @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2018 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@ include Config -VER = 1.40.2 +VER = 1.44.4 THISAPP = e2fsprogs-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 06f7806782e357797fad1d34b7ced0c6 +$(DL_FILE)_MD5 = 156e94a6169ca1fa3f0c6749ae5921b9 install : $(TARGET) @@ -69,12 +69,18 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) $(DIR_SRC)/e2fsprogs-build && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_SRC) && mkdir build - cd $(DIR_SRC)/build && $(DIR_APP)/configure --prefix=/usr --with-root-prefix="" \ - --enable-elf-shlibs --disable-evms --disable-nls - cd $(DIR_SRC)/build && make $(MAKETUNING) - cd $(DIR_SRC)/build && make install - cd $(DIR_SRC)/build && make install-libs - @rm -rf $(DIR_APP) $(DIR_SRC)/e2fsprogs-build + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) + -mkdir -pv $(DIR_APP)/build + cd $(DIR_APP)/build && \ + $(DIR_APP)/configure \ + --prefix=/usr \ + --with-root-prefix="" \ + --enable-elf-shlibs \ + --disable-nls + + cd $(DIR_APP)/build && make $(MAKETUNING) + cd $(DIR_APP)/build && make install + cd $(DIR_APP)/build && make install-libs + chmod -v u+w /usr/lib/{libcom_err,libe2p,libext2fs,libss}.a + @rm -rf $(DIR_APP) @$(POSTBUILD)