vpp icon indicating copy to clipboard operation
vpp copied to clipboard

Missing "export" causing interactive prompts

Open rphedman opened this issue 4 months ago • 1 comments

https://github.com/FDio/vpp/blame/632d9f9dbaf038f75b32bf302345e1a9e7529c26/Makefile#L293

I believe this line is missing the export as below. If DEBIAN_FRONTEND is not set in the environment, it will be interactive. Not using "export" sets it only within the "make", not its subprocesses.

export DEBIAN_FRONTEND=noninteractive

Without this in place I get prompted for iperf3 needing to be restarted during the build.

rphedman avatar Aug 26 '25 12:08 rphedman