Skip to content

Commit

Permalink
stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127
Browse files Browse the repository at this point in the history
)
  • Loading branch information
philiptaron authored Dec 13, 2024
2 parents 3566ab7 + d38743d commit e65ef57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/stdenv/stdenv.chapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ Like `stripAllList`, but only applies to packages’ target platform. By default

##### `stripAllFlags` {#var-stdenv-stripAllFlags}

Flags passed to the `strip` command applied to the files in the directories listed in `stripAllList`. Defaults to `-s` (i.e. `--strip-all`).
Flags passed to the `strip` command applied to the files in the directories listed in `stripAllList`. Defaults to `-s -p` (i.e. `--strip-all --preserve-dates`).

##### `stripDebugList` {#var-stdenv-stripDebugList}

Expand All @@ -898,7 +898,7 @@ Like `stripDebugList`, but only applies to packages’ target platform. By defau

##### `stripDebugFlags` {#var-stdenv-stripDebugFlags}

Flags passed to the `strip` command applied to the files in the directories listed in `stripDebugList`. Defaults to `-S` (i.e. `--strip-debug`).
Flags passed to the `strip` command applied to the files in the directories listed in `stripDebugList`. Defaults to `-S -p` (i.e. `--strip-debug --preserve-dates`).

##### `stripExclude` {#var-stdenv-stripExclude}

Expand Down

0 comments on commit e65ef57

Please sign in to comment.