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 =
''
sed -i 's@,/dev/null@@' configure
patchShebangs configure
'';
# --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).
license = ["GPL" "MPL"];
maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.linux;
platforms = [ "i686-linux" "x86_64-linux" ];
};
}