Re: [Module-build-general] Cross-platform fixes for pass-through Makefile
Status: Beta
Brought to you by:
kwilliams
|
From: <sc...@po...> - 2003-02-17 19:17:16
|
On Mon, Feb 17, 2003 at 12:18:00PM -0600, Dave Rolsky wrote: > > $^X -e unlink -e shift $makefile > > unlink -e ??? He's avoiding using quotes. You're allowed to have multiple -e's on the command line. They'll be joined with a space and run as a single program. |