From patchwork Mon Mar 22 09:31:03 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vedant Paranjape X-Patchwork-Id: 11633 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id B3852BD80C for ; Mon, 22 Mar 2021 09:31:20 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id EFB0D68D58; Mon, 22 Mar 2021 10:31:19 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b="IppYcTYC"; dkim-atps=neutral Received: from mail-pg1-x533.google.com (mail-pg1-x533.google.com [IPv6:2607:f8b0:4864:20::533]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2C9AB6051E for ; Mon, 22 Mar 2021 10:31:17 +0100 (CET) Received: by mail-pg1-x533.google.com with SMTP id l1so8220105pgb.5 for ; Mon, 22 Mar 2021 02:31:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=gmbIGC6kkDYrvzWEEv+0f6FFSZdSwTNvXR703WVhR4I=; b=IppYcTYCVQzJrCBD2SWb0DpTySkEIe5dQDbG+shXggXq8pG+ivIYZ6V9N7epdV6Ebb YB2AEIqyGTcoApz9p8L2PShyE//JXY7Jq9e9UCaYuIJ3Z6ERHiCfQz3G217o08Zjw2JH Xz7zzq+WI/DRGZqny/hQziW15xQ8I+FAFuikm5ulOHCmcoUcVvq3z/4zaOKQp1HtG43W eCvJv3Adz045HTztXmG34l1broVhJcEEWDXEuKj1CMLhtQOovKCVgoZbKcI3S5F8GypR vLiJ3iv53zOE8Bfs8LU8/DQzN1olTzwaaP6e7fAFpzuJXU20HOBBqtgvy8ws5Q526aai Xeog== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=gmbIGC6kkDYrvzWEEv+0f6FFSZdSwTNvXR703WVhR4I=; b=sW5QYv0z8/bTSgIXGPG6uzRr0Oqpl1cs//LNLvG6If/8+XmtwPcT909J133/Jl1Ozo PGCzom0Emf0myyUxa5rvbD3COrQ8eaUMR//nh6KUe8za5NJCw43KSmde2VKCQqJjoAoj mDrtAOukfHRKPDfeGNb7LxE3/19MfpPH4hf/9Cz2yj2gxWJGGdmj/Gb94li8DYysKO20 4EQrXTBru45KtO4fDyxilMgCwVfwb53Tdpxi2yzVxFW9zV02+VJCfvF0qoOCVtB0zFLP bMww9CR9Mc7c6TJW3wyXKEIFpWXiDSm5S9Yw8fcEqWjW6Vevc42y981p5JSFM3zXqz/n gmpw== X-Gm-Message-State: AOAM532IcQQCRxjVnFntPPhe6RBvncrWDXJ4jlCEqY00KUazxOt/2fNB cniJWFx02sD3mp1klRiyVkOSWgcpC66cfg== X-Google-Smtp-Source: ABdhPJyIswP2+1yeLDC4x0SLbFtqqdBmT31LqTiyThT9AMbT08J9m2UWPUZk2OE0HTb6vkY0WClQ9A== X-Received: by 2002:a63:1562:: with SMTP id 34mr21287116pgv.71.1616405475507; Mon, 22 Mar 2021 02:31:15 -0700 (PDT) Received: from localhost.localdomain ([1.186.78.76]) by smtp.googlemail.com with ESMTPSA id m21sm13148823pff.61.2021.03.22.02.31.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 22 Mar 2021 02:31:15 -0700 (PDT) From: Vedant Paranjape To: libcamera-devel@lists.libcamera.org Date: Mon, 22 Mar 2021 15:01:03 +0530 Message-Id: <20210322093103.34842-1-vedantparanjape160201@gmail.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] Added alternative to meson install command, if it fails with --user argument X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Vedant Paranjape Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" While installing meson using pip3 install --user meson, due to python path issues, build.ninja can't be located by ninja. It gives the following error on ninja -C build install: ninja: Entering directory `build' ninja: error: loading 'build.ninja': No such file or directory After uninstalling meson and installing it without --user argument solved the issue, as discussed with pinchartl on irc. Signed-off-by: Vedant Paranjape --- README.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1427c714..0bfd39d9 100644 --- a/README.rst +++ b/README.rst @@ -56,7 +56,9 @@ Meson Build system: [required] pip3 install --user meson pip3 install --user --upgrade meson - + + If this fails, retry with `pip3 install meson` + for the libcamera core: [required] python3-yaml python3-ply python3-jinja2