mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
rpPPPoE: support cross compile
- prevent a configure time check from running. provided an answer that works for x86_64-linux and aarch64-linux - point the makefile to the correct ar tool
This commit is contained in:
parent
39936c75c5
commit
67cb26b790
@ -16,11 +16,16 @@ stdenv.mkDerivation rec {
|
||||
cd src
|
||||
export PPPD=${ppp}/sbin/pppd
|
||||
'';
|
||||
|
||||
configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "rpppoe_cv_pack_bitfields=rev" ];
|
||||
|
||||
postConfigure = ''
|
||||
sed -i Makefile -e 's@DESTDIR)/etc/ppp@out)/etc/ppp@'
|
||||
sed -i Makefile -e 's@PPPOESERVER_PPPD_OPTIONS=@&$(out)@'
|
||||
'';
|
||||
|
||||
makeFlags = [ "AR:=$(AR)" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Roaring Penguin Point-to-Point over Ethernet tool";
|
||||
platforms = platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user