Merge pull request #54386 from witkamp/fix/gcc-arm-embedded/MANPATH

gcc-arm-embedded: fix MANPATH
This commit is contained in:
Alexey Shmalko 2019-01-21 02:32:12 +02:00 committed by GitHub
commit b36794be90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
cp -r * $out
ln -s $out/share/doc/gcc-arm-none-eabi/man $out/man
'';
dontPatchELF = true;

View File

@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
cp -r * $out
ln -s $out/share/doc/gcc-arm-none-eabi/man $out/man
'';
dontPatchELF = true;

View File

@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
cp -r * $out
ln -s $out/share/doc/gcc-arm-none-eabi/man $out/man
'';
dontPatchELF = true;

View File

@ -30,6 +30,7 @@ stdenv.mkDerivation {
installPhase = ''
mkdir -pv $out
cp -r ./* $out
ln -s $out/share/doc/gcc-arm-none-eabi/man $out/man
for f in $(find $out); do
if [ -f "$f" ] && patchelf "$f" 2> /dev/null; then