>From 4e01a024dd8c9de3affb6a0f628fce7325ef07cc Mon Sep 17 00:00:00 2001 From: raingloom Date: Mon, 20 Apr 2020 14:57:33 +0200 Subject: [PATCH 7/8] add temporary debugger breakpoint in f2fs-tools-static --- gnu/packages/linux.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9b56e84477..c0fac7b6e5 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4570,8 +4570,18 @@ disks and SD cards. This package provides the userland utilities.") (package (inherit f2fs-tools) (name "f2fs-tools-static") + (arguments + '(#:make-flags (list "CFLAGS=-v") + #:phases + (modify-phases %standard-phases + (add-before 'install 'fail + (lambda _ + (error "fail on purpose")))))) (inputs - `(("libuuid:static" ,util-linux "static")))))) + `(,@(package-inputs f2fs-tools) + ("libuuid:static" ,util-linux "static") + ("glibc:static" ,glibc "static") + ))))) (define-public f2fs-fsck/static (package -- 2.26.2