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 9037240458 for ; Wed, 22 Dec 2021 00:07:43 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1911B68AF00; Wed, 22 Dec 2021 02:07:41 +0200 (EET) Received: from mail-il1-f179.google.com (mail-il1-f179.google.com [209.85.166.179]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3C5DF6802C1 for ; Wed, 22 Dec 2021 02:07:34 +0200 (EET) Received: by mail-il1-f179.google.com with SMTP id w1so493558ilh.9 for ; Tue, 21 Dec 2021 16:07:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rcombs.me; s=google; h=from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=wbQBtgmMdtPOYEr6wlUk3J1lia9CjtrIQx1zKOpQX/g=; b=UCLavP5KBA7c4wFYa1TMsZkCwAASehjzTeR5faet8Ii8diasu5almb/fpsnBMcXWne tsFZe3mr6FwC03WbPA3fhmS8H+u9SKCf9lZjxp4x3B09WGjgQO5Kmy4TfPNSq0+f4Fu+ W6YvtiGkuq2Ki/rqzC0l59zX4YSjyh/pbedKek4DnW+8BU31glLB+YViYTsYVdBwgZBh 69L5P/xWLdNWo6DASOnJy+zTFLfHgAimfsl3oC7DPhShnR+otfix+/H27VUMlu5ohFeA WpTt/pKqK973wjhgF5nis0nXmG0P8WTj4HegiIziq0gscM6iasyy6/k96z07UCGZOh2l yeDA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=wbQBtgmMdtPOYEr6wlUk3J1lia9CjtrIQx1zKOpQX/g=; b=IixlpWsMVXx8duS3PhH/7cz4J7ThhFv8CRBZkRaMc2hzQDkpZBKoXnqEOzdaNXDFkV duL7mA/DHBY0KYrTmX6qld6j2W7de0YI6LmmCmrbVJp2KlKnByrtC/LeMToDYCEarso2 JuWEmqH4Vtvd+RWfivMcEsMgn1rkUkLV9OBxBXBfhIlTrJf8PM2oktheyAHHSCnsKk0l UfOLwtqrcDUhk8OqLIDCL1S1NHAoeZCEf4osFz+s0X5HxIC0CryInFVrkkx/UNgOFMKy IneaC1bZdlu6qv1H//jznSu2wKnLQt06Vof4YB3GNKX8zwfctxvWqAZI59QA5Z3UJwHB kqWQ== X-Gm-Message-State: AOAM532/0oi/WEU7nvb7VQu2z2O3Scf4h+yc3v3NEJJW4iy0HItyGgXi CZcNLcY9JG98KEGYVb9u6AjQ7Zpwv12SwVE= X-Google-Smtp-Source: ABdhPJylFBq6NmsnPr88xWZmyBHe/Q112QQhhS4EwF0PFuMA3m31894D91Fgzn9RZlAbLUYuaLg4/A== X-Received: by 2002:a05:6e02:1945:: with SMTP id x5mr273048ilu.287.1640131652389; Tue, 21 Dec 2021 16:07:32 -0800 (PST) Received: from rcombs-mbp.localdomain ([2601:243:2000:5ac:d068:8cb9:95e2:de39]) by smtp.gmail.com with ESMTPSA id a1sm238240ilj.35.2021.12.21.16.07.31 for (version=TLS1_3 cipher=TLS_CHACHA20_POLY1305_SHA256 bits=256/256); Tue, 21 Dec 2021 16:07:31 -0800 (PST) From: rcombs To: ffmpeg-devel@ffmpeg.org Date: Tue, 21 Dec 2021 18:07:19 -0600 Message-Id: <20211222000725.38266-1-rcombs@rcombs.me> X-Mailer: git-send-email 2.33.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/7] configure: fix setting OBJCCFLAGS 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 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: We call this OBJCFLAGS in help text, but common.mak looks for OBJCCFLAGS. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3abc4428e5..d49457d192 100755 --- a/configure +++ b/configure @@ -7643,7 +7643,7 @@ LN_S=$ln_s CPPFLAGS=$CPPFLAGS CFLAGS=$CFLAGS CXXFLAGS=$CXXFLAGS -OBJCFLAGS=$OBJCFLAGS +OBJCCFLAGS=$OBJCFLAGS ASFLAGS=$ASFLAGS NVCCFLAGS=$nvccflags AS_C=$AS_C -- 2.33.1 _______________________________________________ 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".