diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index f043f8233c..00571a8318 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -249,7 +249,12 @@ (define-public coreutils (build-system gnu-build-system) (inputs `(("acl" ,acl) ; TODO: add SELinux ("gmp" ,gmp) ;bignums in 'expr', yay! - ("libcap" ,libcap))) ;capability support is 'ls','dir', 'vdir' + + ;; Drop the dependency on libcap when cross-compiling since it's + ;; not quite cross-compilable. + ,@(if (%current-target-system) + '() + `(("libcap" ,libcap))))) ;capability support is 'ls', etc. (native-inputs ;; Perl is needed to run tests in native builds, and to run the bundled ;; copy of help2man. However, don't pass it when cross-compiling since