Remove stdout redirects

See #1016
This commit is contained in:
Markus Unterwaditzer
2026-05-17 20:15:48 +02:00
committed by Cooper Quintin
parent 047fbc216f
commit ac33ebaf53

View File

@@ -39,10 +39,9 @@ cd "$BUILD_DIR/libnl-${LIBNL_VERSION}"
--enable-static \
--disable-shared \
--disable-cli \
--disable-debug \
> /dev/null 2>&1
make -j"$(nproc 2>/dev/null || sysctl -n hw.ncpu)" > /dev/null 2>&1
make install > /dev/null 2>&1
--disable-debug
make -j"$(nproc 2>/dev/null || sysctl -n hw.ncpu)"
make install
echo "Building wpa_supplicant ${WPA_VERSION}..."
cd "$BUILD_DIR"