[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-tar] gnutar 1.17
From: |
Mark Adler |
Subject: |
Re: [Bug-tar] gnutar 1.17 |
Date: |
Sat, 20 Mar 2010 14:07:34 -0700 |
On Mar 18, 2010, at 8:05 AM, Sergey Poznyakoff wrote:
> It adds the --full-time option, which does what you want.
Sergey,
Perfect, that worked! Thanks.
Just as an aside, I ran into a problem trying to build tar 1.17 on Mac OS X.
Two different source files included lib/argp-fmtstream.h, but that header file
had external inline functions defined within. That caused the linker to
complain about the same functions being defined in two different source files.
To fix it, I made those static inline functions instead, and go rid of the
external function definitions also in that header file. Then it built properly.
Mark