Use 'uname -m', which in practice returns the processor architecture. --- psm-3.3/buildflags.mak~ 2014-08-20 21:00:18.000000000 +0100 +++ psm-3.3/buildflags.mak 2017-10-22 12:02:12.855291447 +0100 @@ -38,7 +38,7 @@ endif export os ?= $(shell uname -s | tr '[A-Z]' '[a-z]') -export arch := $(shell uname -p | sed -e 's,\(i[456]86\|athlon$$\),i386,') +export arch := $(shell uname -m | sed -e 's,\(i[456]86\|athlon$$\),i386,') CC ?= gcc tatic/cgit.png' alt='cgit logo'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/git
AgeCommit message (Expand)Author
2021-10-14Add git configuration templates to improve diff hunk header detection....This is a follow-up to commit 9fc8ae4171e5da4939a64fc6d684c8b9d85bbe84, which missed two hunks from <https://issues.guix.gnu.org/50363>. Reported by hackeryarn on #guix. * .gitattributes, etc/git/gitconfig: New files. Signed-off-by: Marius Bakke <marius@gnu.org> Sarah Morgensen
2020-12-14maint: Only run `make authenticate` when pushing commits....* etc/git/pre-push: Exit early when deleting a branch. Leo Famulari