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 b9f102b03c8ec311f309b10b583f956ff8a4a7c6 (commit) via 6f1ca1a1b0417c3def754e44e930782299cf7585 (commit) from f31406a9de231da58fd530c364dece3a80a5fc36 (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 b9f102b03c8ec311f309b10b583f956ff8a4a7c6 Merge: 6f1ca1a1b0417c3def754e44e930782299cf7585 f31406a9de231da58fd530c364dece3a80a5fc36 Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Apr 11 01:04:04 2010 +0200
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-3.x
commit 6f1ca1a1b0417c3def754e44e930782299cf7585 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Apr 10 23:15:15 2010 +0200
lsof: lsof is for root use only.
-----------------------------------------------------------------------
Summary of changes: pkgs/core/lsof/lsof.nm | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-)
Difference in files: diff --git a/pkgs/core/lsof/lsof.nm b/pkgs/core/lsof/lsof.nm index 3c87f89..f2a1f14 100644 --- a/pkgs/core/lsof/lsof.nm +++ b/pkgs/core/lsof/lsof.nm @@ -45,12 +45,16 @@ PKG_TARBALL = $(PKG_NAME)_$(PKG_VER)_src.tar.gz DIR_APP = /usr/src/$(PKG_NAME)_$(PKG_VER)_src
define STAGE_BUILD - cd $(DIR_APP) && ./Configure linux -n + cd $(DIR_APP) && \ + LINUX_BASE=/proc \ + LSOF_VSTR="2.6.16" \ + ./Configure linux -n cd $(DIR_APP) && make DEBUG="$(CFLAGS)" $(PARALLELISMFLAGS) endef
define STAGE_INSTALL - -mkdir -pv $(BUILDROOT)/usr/bin - cd $(DIR_APP) && install -m 4750 -o root -g nobody lsof $(BUILDROOT)/usr/bin + -mkdir -pv $(BUILDROOT)/usr/sbin + cd $(DIR_APP) && install -m 755 lsof $(BUILDROOT)/usr/sbin + -mkdir -pv $(BUILDROOT)/usr/share/man/man8 + cd $(DIR_APP) && cp -vf lsof.8 $(BUILDROOT)/usr/share/man/man8 endef -
hooks/post-receive -- IPFire 3.x development tree