From: Michael Tremer Date: Sat, 15 Nov 2008 16:50:46 +0000 (+0100) Subject: Make things clearer when someone is watching the logs with tail. X-Git-Tag: v3.0-alpha1~457^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cff099a45f335eb8f715933767fe0a4ef72df4e9;p=ipfire-3.x.git Make things clearer when someone is watching the logs with tail. --- diff --git a/lfs/Config b/lfs/Config index f0821c52c..06da803af 100644 --- a/lfs/Config +++ b/lfs/Config @@ -98,6 +98,7 @@ define PREBUILD echo "# Application: $(THISAPP)" echo "# Description: $(SHORT_DESC)" echo "######################################################################" + echo "# Saving file list..." if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi endef else @@ -160,26 +161,24 @@ define POSTBUILD touch $(TARGET); \ fi @rm -f $(TARGET)_diff + echo "######################################################################" touch $(DIR_INFO)/_build.00-software.log if [ "x$(objects)" != "x" ] && \ ! grep -qEi "^$(PKG_NAME);$(VER);" $(DIR_INFO)/_build.00-software.log; then \ echo "$(PKG_NAME);$(VER);" >> $(DIR_INFO)/_build.00-software.log; \ fi - - echo "######################################################################" endef else define POSTBUILD echo "### INSTALL DONE #####################################################" echo "# Application: $(THISAPP)" + echo "######################################################################" touch $(DIR_INFO)/_build.00-software.log if [ "x$(objects)" != "x" ] && \ ! grep -qEi "^$(PKG_NAME);$(VER);" $(DIR_INFO)/_build.00-software.log; then \ echo "$(PKG_NAME);$(VER);" >> $(DIR_INFO)/_build.00-software.log; \ fi - - echo "######################################################################" touch $(TARGET) endef endif