mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
Merge pull request #84551 from gnprice/pr-stripDebugList
treewide: Fix types of stripDebugList attrs (and fix doc)
This commit is contained in:
commit
401e07d419
@ -1295,7 +1295,7 @@ installTargets = "install-bin install-doc";</programlisting>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
List of directories to search for libraries and executables from which only debugging-related symbols should be stripped. It defaults to <literal>lib bin sbin</literal>.
|
||||
List of directories to search for libraries and executables from which only debugging-related symbols should be stripped. It defaults to <literal>lib lib32 lib64 libexec bin sbin</literal>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
|
||||
wrapProgram $out/bin/far2l --argv0 $out/bin/far2l
|
||||
'';
|
||||
|
||||
stripDebugList = "bin share";
|
||||
stripDebugList = [ "bin" "share" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
|
||||
"--without-ldb-lmdb"
|
||||
];
|
||||
|
||||
stripDebugList = "bin lib modules";
|
||||
stripDebugList = [ "bin" "lib" "modules" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A LDAP-like embedded database";
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
nativeBuildInputs = [ automake autoconf ];
|
||||
|
||||
# Make sure we don't strip the libraries in lib/gcc/avr.
|
||||
stripDebugList = "bin";
|
||||
stripDebugList = [ "bin" ];
|
||||
dontPatchELF = true;
|
||||
|
||||
passthru = {
|
||||
|
@ -56,7 +56,7 @@ stdenv.mkDerivation {
|
||||
enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...'
|
||||
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
|
||||
|
||||
stripDebugList = "bin sbin share/syslinux/com32";
|
||||
stripDebugList = [ "bin" "sbin" "share/syslinux/com32" ];
|
||||
|
||||
makeFlags = [
|
||||
"BINDIR=$(out)/bin"
|
||||
|
@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
stripDebugList = "lib modules bin";
|
||||
stripDebugList = [ "lib" "modules" "bin" ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $doc/share/doc/httpd
|
||||
|
Loading…
Reference in New Issue
Block a user