Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 764134

Summary: dev-lisp/sbcl-2.0.11 calls commands that do not exist
Product: Gentoo Linux Reporter: Agostino Sarubbo <ago>
Component: Current packagesAssignee: Common Lisp Bugs <common-lisp>
Status: RESOLVED INVALID    
Severity: normal    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: build.log

Description Agostino Sarubbo gentoo-dev 2021-01-06 17:25:12 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: dev-lisp/sbcl-2.0.11 calls commands that do not exist.
Discovered on: amd64 (internal ref: ci)
Comment 1 Agostino Sarubbo gentoo-dev 2021-01-06 17:25:15 UTC
Created attachment 681553 [details]
build.log

build log and emerge --info
Comment 2 Ulrich Müller gentoo-dev 2021-01-06 18:37:16 UTC
That's by design in the upstream build system, see src/runtime/GNUmakefile:

# || true because we don't want the build to break if etags isn't there.
# ...but it's still nice to have it done by default.
HEADERS=$(wildcard *.h genesis/*.h)
TAGS tags: $(SRCS) $(HEADERS)
        @etags $(SRCS) $(HEADERS) || true

I count this as a false positive.