From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 435764A904 for ; Tue, 23 Apr 2024 21:57:39 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 61F7968D2F6; Wed, 24 Apr 2024 00:57:37 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id B9D5E68D274 for ; Wed, 24 Apr 2024 00:57:30 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 1DEC727FFD7DE; Tue, 23 Apr 2024 23:57:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1713909448; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=hTcPobMma0KXLiHPrlMDWm9hS4VdqLkbXVc1UXu/Yzs=; b=AjcbZStcIl1opP4+r56CJ9Oie1/ciA1Tekac1CdwOErs5Z0gQemmcGPN8bszVvQbPZtf+A otacm2FlLJXnlb5ig+169adg6CafvmxlNBOMhVyo6NgVN06TyZaksGVw7IHpIS6TxMkp+Y ADGig3NA3lVxnv9QrqT2j9M44fgU+YpEn8ApzXw9hQR8dWpaY95LLa8B7VoTj0XaEJ3oJv 90GrFgh8EQ/3cv2FdrnykObE33qcDhK5rMl8Gt6msOPpTXqUqcj74DmRj116Mcm3icZOei m8g0bRTpv12IQe/tHZ9LEGAfyfo0nTBqkXzjMY/1NzWn9B6HKC2+VSIUHhC2wA== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Tue, 23 Apr 2024 23:57:10 +0200 Message-ID: <20240423215713.407217-1-timo@rothenpieler.org> X-Mailer: git-send-email 2.43.2 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] doc: use HOSTEXESUF when calling binary X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: This is neccesary on WSL, and has no averse effects in normal environments. --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 67586e4b74..98d29f1c66 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -60,7 +60,7 @@ GENTEXI := $(GENTEXI:%=doc/avoptions_%.texi) $(GENTEXI): TAG = GENTEXI $(GENTEXI): doc/avoptions_%.texi: doc/print_options$(HOSTEXESUF) - $(M)doc/print_options $* > $@ + $(M)doc/print_options$(HOSTEXESUF) $* > $@ doc/%.html: TAG = HTML doc/%-all.html: TAG = HTML -- 2.43.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".