~ubuntu-branches/ubuntu/trusty/tar/trusty

« back to all changes in this revision

Viewing changes to src/tar.c

  • Committer: Bazaar Package Importer
  • Author(s): Carl Worth
  • Date: 2009-08-04 12:07:06 UTC
  • mfrom: (12.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090804120706-ofacv0s6cq424w53
Tags: 1.22-2
* Add Carl Worth as an uploader.
* Fix to allow parallel build (-j2), closes: #535319
* Don't close file stream before EOF, closes: #525818
* Preserve hard links with --remove-files, closes: #188663
  Thanks to Ted T'so for the idea and Sergey Poznyakoff for
  cleaning up my original implementation.
* Respect DEB_BUILD_OPTIONS=nocheck to conform with Policy 3.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2454
2454
 
2455
2455
  obstack_init (&argv_stk);
2456
2456
 
2457
 
#ifdef SIGCHLD
 
2457
  /* Ensure default behavior for some signals */
 
2458
  signal (SIGPIPE, SIG_DFL);
2458
2459
  /* System V fork+wait does not work if SIGCHLD is ignored.  */
2459
2460
  signal (SIGCHLD, SIG_DFL);
2460
 
#endif
2461
2461
 
2462
2462
  /* Decode options.  */
2463
2463