Ticket #331: quilt-0.48.patch
| File quilt-0.48.patch, 2.5 KB (added by mjw, 5 years ago) |
|---|
-
changes2changelog
old new 1 #! /usr/bin/perl1 #!perl 2 2 3 3 $ENV{"LC_ALL"} = "C"; 4 4 -
quilt.quiltrc
old new QUILT_PATCH_OPTS="--unified" 12 12 #QUILT_DIFFSTAT_OPTS="-f0" 13 13 14 14 # Options to pass to commands (QUILT_${COMMAND}_ARGS) 15 QUILT_PUSH_ARGS=" --color=auto"16 QUILT_DIFF_ARGS="--no-timestamps --color=auto"15 QUILT_PUSH_ARGS="" 16 QUILT_DIFF_ARGS="--no-timestamps" 17 17 QUILT_REFRESH_ARGS="--no-timestamps --backup" 18 18 19 19 # (Add "-p ab" to QUILT_DIFF_ARGS and QUILT_REFRESH_ARGS to get … … QUILT_PATCHES_PREFIX=yes 28 28 29 29 # Use a specific editor for quilt (defaults to the value of $EDITOR before 30 30 # sourcing this configuration file, or vi if $EDITOR wasn't set). 31 #EDITOR=nedit 31 EDITOR=nano -
configure.ac
old new You can get this patch at ftp://ftp.gnu. 69 69 fi 70 70 71 71 QUILT_COMPAT_PROG_PATH(CP, cp, [gcp cp]) 72 AC_MSG_CHECKING(whether $CP -l works)73 touch conftest.174 if $CP -l conftest.1 conftest.2 2>/dev/null; then75 AC_MSG_RESULT(yes)76 else77 AC_MSG_ERROR([no78 79 You appear to have a `cp' that does not support hard links.80 You can download GNU fileutils from ftp.gnu.org81 ])82 fi83 72 84 73 QUILT_COMPAT_PROG_PATH(DATE, date, [gdate date]) 85 74 -
quilt/scripts/dependency-graph.in
old new if ($reduce) { 438 438 $out = new FileHandle("| tred") 439 439 or die "tred: $!\n"; 440 440 } else { 441 $out = new FileHandle("> /dev/stdout") 442 or die "$!\n"; 441 $out = *STDOUT; 443 442 } 444 443 445 444 # Write graph -
lib/backup-files.c
old new link_or_copy_file(const char *from, cons 224 224 if (link(from, to) == 0) 225 225 return 0; 226 226 if (errno != EXDEV && errno != EPERM && 227 errno != EMLINK && errno != ENOSYS) { 227 errno != EMLINK && errno != ENOSYS && 228 errno != EOPNOTSUPP) { 228 229 fprintf(stderr, "Could not link file `%s' to `%s': %s\n", 229 230 from, to, strerror(errno)); 230 231 return 1;
