HaikuPorts
  • Login
  • Preferences
  • Help/Guide
  • Wiki
  • Timeline
  • Roadmap
  • View Tickets
  • Search
  • Port Log
  • Blog

Context Navigation

  • Back to Ticket #331

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/perl 
     1#!perl 
    22 
    33$ENV{"LC_ALL"} = "C"; 
    44 
  • quilt.quiltrc

    old new QUILT_PATCH_OPTS="--unified" 
    1212#QUILT_DIFFSTAT_OPTS="-f0" 
    1313 
    1414# Options to pass to commands (QUILT_${COMMAND}_ARGS) 
    15 QUILT_PUSH_ARGS="--color=auto" 
    16 QUILT_DIFF_ARGS="--no-timestamps --color=auto" 
     15QUILT_PUSH_ARGS="" 
     16QUILT_DIFF_ARGS="--no-timestamps" 
    1717QUILT_REFRESH_ARGS="--no-timestamps --backup" 
    1818 
    1919# (Add "-p ab" to QUILT_DIFF_ARGS and QUILT_REFRESH_ARGS to get 
    … … QUILT_PATCHES_PREFIX=yes 
    2828 
    2929# Use a specific editor for quilt (defaults to the value of $EDITOR before 
    3030# sourcing this configuration file, or vi if $EDITOR wasn't set). 
    31 #EDITOR=nedit 
     31EDITOR=nano 
  • configure.ac

    old new You can get this patch at ftp://ftp.gnu. 
    6969fi 
    7070 
    7171QUILT_COMPAT_PROG_PATH(CP, cp, [gcp cp]) 
    72 AC_MSG_CHECKING(whether $CP -l works) 
    73 touch conftest.1 
    74 if $CP -l conftest.1 conftest.2 2>/dev/null; then 
    75         AC_MSG_RESULT(yes) 
    76 else 
    77         AC_MSG_ERROR([no 
    78  
    79 You appear to have a `cp' that does not support hard links. 
    80 You can download GNU fileutils from ftp.gnu.org 
    81 ]) 
    82 fi 
    8372 
    8473QUILT_COMPAT_PROG_PATH(DATE, date, [gdate date]) 
    8574 
  • quilt/scripts/dependency-graph.in

    old new if ($reduce) { 
    438438    $out = new FileHandle("| tred") 
    439439        or die "tred: $!\n"; 
    440440} else { 
    441     $out = new FileHandle("> /dev/stdout") 
    442         or die "$!\n"; 
     441    $out = *STDOUT; 
    443442} 
    444443 
    445444# Write graph 
  • lib/backup-files.c

    old new link_or_copy_file(const char *from, cons 
    224224        if (link(from, to) == 0) 
    225225                return 0; 
    226226        if (errno != EXDEV && errno != EPERM && 
    227             errno != EMLINK && errno != ENOSYS) { 
     227            errno != EMLINK && errno != ENOSYS && 
     228            errno != EOPNOTSUPP) { 
    228229                fprintf(stderr, "Could not link file `%s' to `%s': %s\n", 
    229230                       from, to, strerror(errno)); 
    230231                return 1; 

Download in other formats:

  • Original Format

Trac Powered

Powered by Trac 0.13dev-r10686
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/