mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
sysutils/mcelog: update 148 -> 149
- dmi: Handle NULL DMI string - mcelog: Fix (harmless) off by one error in DMI scanning - triggers/cache-error-trigger: remove bash specifics - Makefile: replace echo -n with printf for posix shell compat PR: 218246 Submitted by: Ultima1252@gmail.com (maintainer)
This commit is contained in:
parent
d7860866e5
commit
17e9fb1fb3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=437341
3 changed files with 10 additions and 10 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mcelog
|
||||
PORTVERSION= 148
|
||||
PORTVERSION= 149
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= sysutils
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1486231306
|
||||
SHA256 (andikleen-mcelog-v148_GH0.tar.gz) = 3de7312ee13b0968ae8e1aa0a77acaaee89a0ed7de45f7ce557939723df3dc04
|
||||
SIZE (andikleen-mcelog-v148_GH0.tar.gz) = 296927
|
||||
TIMESTAMP = 1490717998
|
||||
SHA256 (andikleen-mcelog-v149_GH0.tar.gz) = a9313ed45cabaf7ef0a4d986ecf24a3c9ced9a4b1e34032d380af4e70c73512f
|
||||
SIZE (andikleen-mcelog-v149_GH0.tar.gz) = 296943
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
--- Makefile.orig 2017-02-04 00:51:04 UTC
|
||||
--- Makefile.orig 2017-03-29 17:32:02 UTC
|
||||
+++ Makefile
|
||||
@@ -27,14 +27,21 @@ all: mcelog
|
||||
|
||||
|
@ -37,18 +37,18 @@
|
|||
@@ -82,7 +89,7 @@ depend: .depend
|
||||
|
||||
version.tmp: FORCE
|
||||
( echo -n "char version[] = \"" ; \
|
||||
( printf "char version[] = \"" ; \
|
||||
- if command -v git >/dev/null; then \
|
||||
+ if false; then \
|
||||
if [ -d .git ] ; then \
|
||||
git describe --tags HEAD | tr -d '\n'; \
|
||||
else \
|
||||
@@ -98,8 +105,6 @@ version.c: version.tmp
|
||||
@@ -97,8 +104,6 @@ version.c: version.tmp
|
||||
|
||||
.depend: ${SRC}
|
||||
${CC} -MM -I. ${SRC} > .depend.X && mv .depend.X .depend
|
||||
|
||||
-include .depend
|
||||
-
|
||||
-include .depend
|
||||
|
||||
Makefile: .depend
|
||||
|
||||
.PHONY: iccverify src test
|
||||
|
|
Loading…
Add table
Reference in a new issue