Merge pull request #36651 from pbogdan/yate-shebangs

yate: patch shebangs in configure
This commit is contained in:
Jörg Thalheim 2018-03-09 16:08:37 +00:00 committed by GitHub
commit 342743c903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
preConfigure = preConfigure =
'' ''
sed -i 's@,/dev/null@@' configure sed -i 's@,/dev/null@@' configure
patchShebangs configure
''; '';
# --unresolved-symbols=ignore-in-shared-libs makes ld no longer find --library=yate? Why? # --unresolved-symbols=ignore-in-shared-libs makes ld no longer find --library=yate? Why?
@ -35,7 +36,7 @@ stdenv.mkDerivation rec {
# OpenH323 and PWlib (licensed under MPL). # OpenH323 and PWlib (licensed under MPL).
license = ["GPL" "MPL"]; license = ["GPL" "MPL"];
maintainers = [ lib.maintainers.marcweber ]; maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.linux; platforms = [ "i686-linux" "x86_64-linux" ];
}; };
} }