X-Authentication-Warning: kendall.sfbr.org: jeffw set sender to jeffw AT darwin DOT sfbr DOT org using -f Date: Mon, 26 Aug 2002 14:35:15 -0500 From: JT Williams To: Eli Zaretskii Cc: djgpp AT delorie DOT com Subject: Re: file names in Makefile Message-ID: <20020826193515.GB24199@kendall.sfbr.org> Mail-Followup-To: Eli Zaretskii , djgpp AT delorie DOT com References: <20020826173633 DOT GB23913 AT kendall DOT sfbr DOT org> <3405-Mon26Aug2002215804+0300-eliz AT is DOT elta DOT co DOT il> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3405-Mon26Aug2002215804+0300-eliz@is.elta.co.il> User-Agent: Mutt/1.4i Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk FWIW, even Solaris has problems; here is how bash 2.04 under Solaris 2.8 reacts to various escape patterns (the file name is "2000;64(4):349--362.pdf"). % ls ~/docs/2000;64(4):349--362.pdf bash: syntax error near unexpected token `;64(4)' % ls ~/docs/2000\;64(4):349--362.pdf bash: syntax error near unexpected token `;64(4' % ls ~/docs/2000\;64(4):349--362.pdf bash: syntax error near unexpected token `;64(4' % ls ~/docs/2000\;64\(4):349--362.pdf bash: syntax error near unexpected token `;64\(4):' % ls ~/docs/2000\;64\(4)\:349--362.pdf bash: syntax error near unexpected token `;64\(4)\' % ls ~/docs/2000\;64\(4\):349--362.pdf /home/jeffw/docs/ann-hum-genet/2000;64(4):349--362.pdf _None_ of these escape patterns, with or without quotes, is acceptable inside a Makefile (with make 3.78.1).