From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 7f69895cb57bc6a41cdcb5b3725dd8f2bd21643f Date: Mon, 14 Sep 2015 19:52:37 +0200 Message-ID: <20150914175237.BB9BA221CC@argus.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7424502227670557377==" List-Id: --===============7424502227670557377== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 2.x development tree". The branch, next has been updated via 7f69895cb57bc6a41cdcb5b3725dd8f2bd21643f (commit) via d9c6f56c2ea171cbc1fa396feb30d2814b9a818d (commit) from 1e4dbfbdf9a06512f52c2d49b77b5c2bc4d2a768 (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 7f69895cb57bc6a41cdcb5b3725dd8f2bd21643f Author: Arne Fitzenreiter Date: Mon Sep 14 19:50:58 2015 +0200 make.sh: generate correct SYSTEM_RELEASE string if --target=3D was used. =20 Signed-off-by: Arne Fitzenreiter commit d9c6f56c2ea171cbc1fa396feb30d2814b9a818d Author: Arne Fitzenreiter Date: Mon Sep 14 19:50:13 2015 +0200 pakfire: use correct tree on x86_64. =20 Signed-off-by: Arne Fitzenreiter ----------------------------------------------------------------------- Summary of changes: lfs/pakfire | 6 +++--- make.sh | 31 ++++++++++++++++--------------- 2 files changed, 19 insertions(+), 18 deletions(-) Difference in files: diff --git a/lfs/pakfire b/lfs/pakfire index 6f90f89..00d1bb1 100644 --- a/lfs/pakfire +++ b/lfs/pakfire @@ -30,10 +30,10 @@ THISAPP =3D pakfire DIR_APP =3D /opt/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) =20 -ifeq "$(MACHINE_TYPE)" "arm" - PAKFIRE_VERSION =3D $(VERSION)-$(MACHINE) -else +ifeq "$(MACHINE)" "i586" PAKFIRE_VERSION =3D $(VERSION) +else + PAKFIRE_VERSION =3D $(VERSION)-$(MACHINE) endif =20 ############################################################################= ### diff --git a/make.sh b/make.sh index da8c17c..375f72d 100755 --- a/make.sh +++ b/make.sh @@ -86,21 +86,6 @@ if [ -z $EDITOR ]; then [ -z $EDITOR ] && exiterror "You should have installed an editor." fi =20 -# Prepare string for /etc/system-release. -SYSTEM_RELEASE=3D"${NAME} ${VERSION} (${MACHINE})" -if [ "$(git status -s | wc -l)" =3D=3D "0" ]; then - GIT_STATUS=3D"" -else - GIT_STATUS=3D"-dirty" -fi -case "$GIT_BRANCH" in - core*|beta?|rc?) - SYSTEM_RELEASE=3D"${SYSTEM_RELEASE} - $GIT_BRANCH$GIT_STATUS" - ;; - *) - SYSTEM_RELEASE=3D"${SYSTEM_RELEASE} - Development Build: $GIT_BRANCH/$GIT_= LASTCOMMIT$GIT_STATUS" - ;; -esac =20 prepareenv() { ########################################################################= #### @@ -240,6 +225,22 @@ prepareenv() { =20 # Remove pre-install list of installed files in case user erase some fil= es before rebuild rm -f $BASEDIR/build/usr/src/lsalr 2>/dev/null + + # Prepare string for /etc/system-release. + SYSTEM_RELEASE=3D"${NAME} ${VERSION} (${MACHINE})" + if [ "$(git status -s | wc -l)" =3D=3D "0" ]; then + GIT_STATUS=3D"" + else + GIT_STATUS=3D"-dirty" + fi + case "$GIT_BRANCH" in + core*|beta?|rc?) + SYSTEM_RELEASE=3D"${SYSTEM_RELEASE} - $GIT_BRANCH$GIT_STATUS" + ;; + *) + SYSTEM_RELEASE=3D"${SYSTEM_RELEASE} - Development Build: $GIT_BRANCH/$GIT_= LASTCOMMIT$GIT_STATUS" + ;; + esac } =20 buildtoolchain() { hooks/post-receive -- IPFire 2.x development tree --===============7424502227670557377==--