This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via 918f28d16180a7107247ab47104f6632c1e2830d (commit) from e1b31c036dc8a8dcaa22204aff72d835ccd7b616 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 918f28d16180a7107247ab47104f6632c1e2830d Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Dec 3 11:46:49 2011 +0100
e2fsprogs: Cleanup package.
The --host=... and --build=... flags were ignored and the testsuite crashed when there was no /etc/mtab.
-----------------------------------------------------------------------
Summary of changes: e2fsprogs/e2fsprogs.nm | 25 +++++++++++++------------ 1 files changed, 13 insertions(+), 12 deletions(-)
Difference in files: diff --git a/e2fsprogs/e2fsprogs.nm b/e2fsprogs/e2fsprogs.nm index 1fce087..7b80dcd 100644 --- a/e2fsprogs/e2fsprogs.nm +++ b/e2fsprogs/e2fsprogs.nm @@ -31,10 +31,6 @@ build prepare_cmds mkdir -pv %{DIR_APP}/build
- # Fix DT_TEXTREL in e2fsprogs libraries. --disable-shared and - # --with-pic are not options in E2fsprogs: - find lib/ -name Makefile.in -exec sed -i "s/%{ALL_CFLAGS}/& -fPIC/" {} ; - # At run time libblkid looks for the BLKID_DEBUG environment variable to # enable debbugging, with getenv(3). Some suid-root programs use libblkid, # such as mount(1). e2fsprogs includes a safe_getenv() function, which calls @@ -42,25 +38,30 @@ build # variables if the user is suid or sgid. So, this command replaces getenv() # with safe_getenv(): sed \ - -e "s/getenv("BLKID_DEBUG")/safe_getenv("BLKID_DEBUG")/" \ + -e 's/getenv("BLKID_DEBUG")/safe_getenv("BLKID_DEBUG")/' \ -i lib/blkid/cache.c end
+ configure_options += \ + --with-root-prefix="" \ + --enable-elf-shlibs \ + --disable-libblkid \ + --disable-fsck \ + --disable-uuidd \ + --disable-libuuid + build cd build ../configure \ - --prefix=/usr \ - --with-root-prefix="" \ - --enable-elf-shlibs \ - --disable-libblkid \ - --disable-fsck \ - --disable-uuidd \ - --disable-libuuid + %{configure_options}
make %{PARALLELISMFLAGS} end
test + # Create empty mtab file if it does not exist. + [ -e /etc/mtab ] || touch /etc/mtab + cd build && make check end
hooks/post-receive -- IPFire 3.x development tree