X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; q=dns; s=default; b=hpd4Ukg7X4uNLNk+4tuvCQQkrSCWW WxQEAxchedfXy1tE0hdK52L7bN4Byi6WfcGu4qEg2EjlLvzPt+NA5fOv5cMqRFTh f5TrBsyozYMwpmMC5B2fXB2ynxOhbRcPd7fBLgNLa1zPSmb1aSri19xIsdAlyUR+ COTZqwyZIvSqy4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; s=default; bh=skersl+pQapyEzAYwrZqhJAz7rg=; b=TDj EvKfA05k8VS80nzeN09NNu8YI6paSI+QXWLpDqDaHuuVaZtjJnZLj3X8gtrGmjiR VX5/Ls6rY3qqB2eNvvonOG5hK3LpGIPni84hVzGAbVumMfB36AJqPAilI0X5c7aT AP/Xx/lUYiGlJS64Ce8udNLhAzg1yfaOTYKyVP3M= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=H*c:alternative X-HELO: mail-it1-f170.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=PIJPhefyqcXE+b9UYloTytBrJYmkwo7f2x3Kv5fSRjY=; b=Y5E8GLJh4hyZ+8w/p2DTdUkleBZgvbtPEBdyz08n8i+6W036S3jjngekWEfirgxxaG FyXaGwP0lhTJW8L9DIacYcUHHKNSzj4HADhNRjCkoypEYZb3fvPmT3rDTxPDQt0dK0s6 LwybDKiN98EwhPa5GzcfGqSCrw9SPsWyIeKb4pGZCjmwYp51YgZx+Ft8gLSSgflWyVsN V2m05tn+QbONnaavXu4dsPkChtW5Q/3bdZrznf16A2NwpZklF/FBygBxgWycWpOodt8G QtxPAorIUKs9VhE1vDca9PRr6d7diEdDa3ff2cfsRuz0IClRdrVZJmYZUZJsvzc2rHm6 VpPQ== MIME-Version: 1.0 From: Peter Palaparthy Date: Thu, 25 Apr 2019 11:11:09 -0500 Message-ID: Subject: Cygwin bash script removing equal sign To: cygwin AT cygwin DOT com Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes Cygwin bash script is removing equals sign from command call. How do I escape it so that = is sent to command? I tried different things like escaping = with \ and enclosing it with "" and '' but none of them worked. *Here is the relevant command in my makefile.* *$(elabcmd) = $(XELAB_DEFAULT) \-generic VERSION=10* *compile:$(elabcmd)* *Here is the result:* cygwin prompt:> make compile *Running: xelab.exe -generic VERSION 10* *(note that the equal sign is not there)* I want *xelab.exe -generic VERSION=10* Thanks for any help. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple