Skip to content

Commit 1f846f6

Browse files
committed
autogen: hide bigsur libtool patch apply failure messages
Thanks to Donald Buczek for the report. Closes #505. Signed-off-by: Brice Goglin <[email protected]>
1 parent 005fcda commit 1f846f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if grep -A1 MACOSX_DEPLOYMENT_TARGET configure | grep powerpc >/dev/null \
1919
else
2020
echo "yes"
2121
echo "Trying to patch configure..."
22-
if patch -p1 --dry-run < config/libtool-big-sur-fixup.patch; then
22+
if patch -p1 --dry-run < config/libtool-big-sur-fixup.patch >/dev/null 2>&1; then
2323
echo "Patching for real now"
2424
patch -p1 < config/libtool-big-sur-fixup.patch
2525
else

0 commit comments

Comments
 (0)