tar question
Jason Tishler
Jason.Tishler@dothill.com
Thu Aug 17 07:25:00 GMT 2000
Matt,
On Thu, Aug 17, 2000 at 08:53:42AM -0500, Matt Minnis wrote:
> Here is my command line:
> @tar -zcvf $(TARBALL) Makefile *.c *.h ./tracer/* \
> License Readme version ./monitor/* --exclude=./monitor/monitor.o
Use the following instead:
tar -zcvf $(TARBALL) Makefile *.c *.h ./tracer/* \
License Readme version ./monitor --exclude=./monitor/monitor.o
^
+--- see below
Note that there is no "/*" after "./monitor" above.
You are explicitly specifying "./monitor/monitor.o" on the commandline
via "./monitor/*", so the exclude option is being ignored. Hence, the
guess in my previous email was correct.
Jason
--
Jason Tishler
Director, Software Engineering Phone: +1 (732) 264-8770 x235
Dot Hill Systems Corporation Fax: +1 (732) 264-8798
82 Bethany Road, Suite 7 Email: Jason.Tishler@dothill.com
Hazlet, NJ 07730 USA WWW: http://www.dothill.com
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com
More information about the Cygwin
mailing list