From 1ee48795247196c476801b7a26f804e8b92cac73 Mon Sep 17 00:00:00 2001 From: Dorian Wouters Date: Tue, 2 Jan 2018 13:58:03 +0100 Subject: [PATCH] fatrace: fix wrong constant value being sed'd out Closes: #10351 [via git-merge-pr] --- srcpkgs/fatrace/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/fatrace/template b/srcpkgs/fatrace/template index bf42f51fecb..b64a20d7925 100644 --- a/srcpkgs/fatrace/template +++ b/srcpkgs/fatrace/template @@ -1,7 +1,7 @@ # Template file for 'fatrace' pkgname=fatrace version=0.12 -revision=2 +revision=3 build_style=gnu-makefile short_desc="Report system wide file access events" maintainer="Christian Neukirchen " @@ -12,5 +12,5 @@ checksum=50e71706f2cad4efc37c23bd292a2d3aa53dd883506e910267b2eeb5b241f66b post_extract() { sed -i 's/sbin/bin/g' Makefile - sed -i 's/KERNEL_O_LARGEFILE 0200000/KERNEL_O_LARGEFILE 0/g' fatrace.c + sed -i 's/KERNEL_O_LARGEFILE 00100000/KERNEL_O_LARGEFILE 0/g' fatrace.c }