gnu: babeltrace: Do not install bindings as egg.
Oddly enough, bindings were now installed as an egg. Fix this by forcing setuptools to install individual files with `--single-version-externally-managed' * gnu/packages/instrumentation.scm (babeltrace)[arguments]<#:make-flags>: Pass it via DISTSETUPOPTS. Change-Id: I143dd16179e1e4728cb8e5d6b00b06359da83389 Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
42aabf9dac
commit
c4b4badb2e
|
@ -85,7 +85,9 @@
|
|||
`(#:tests? #f ; FIXME - When Python's bindings are enabled, tests do not
|
||||
; pass.
|
||||
#:make-flags
|
||||
,#~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
|
||||
,#~(list
|
||||
(string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")
|
||||
"DISTSETUPOPTS=--single-version-externally-managed") ;no .egg files
|
||||
#:configure-flags
|
||||
'("--enable-debug-info"
|
||||
"--enable-man-pages"
|
||||
|
|
Reference in New Issue