Ignore:
Timestamp:
Feb 3, 2017, 2:02:34 PM (8 years ago)
Author:
Silvan Scherrer
Message:

cpio: update vendor to version 2.12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified cpio/vendor/current/m4/lchown.m4

    r118 r1964  
    1 # serial 15
     1# serial 17
    22# Determine whether we need the lchown wrapper.
    33
    4 dnl Copyright (C) 1998, 2001, 2003-2007, 2009-2010 Free Software Foundation,
     4dnl Copyright (C) 1998, 2001, 2003-2007, 2009-2015 Free Software Foundation,
    55dnl Inc.
    66
     
    1818  AC_REQUIRE([gl_FUNC_CHOWN])
    1919  AC_CHECK_FUNCS_ONCE([lchmod])
    20   AC_REPLACE_FUNCS([lchown])
     20  AC_CHECK_FUNCS([lchown])
    2121  if test $ac_cv_func_lchown = no; then
    2222    HAVE_LCHOWN=0
    23   elif test "$gl_cv_func_chown_slash_works" != yes \
    24       || test "$gl_cv_func_chown_ctime_works" != yes; then
     23  else
    2524    dnl Trailing slash and ctime bugs in chown also occur in lchown.
    26     AC_LIBOBJ([lchown])
    27     REPLACE_LCHOWN=1
     25    case "$gl_cv_func_chown_slash_works" in
     26      *yes) ;;
     27      *)
     28        REPLACE_LCHOWN=1
     29        ;;
     30    esac
     31    case "$gl_cv_func_chown_ctime_works" in
     32      *yes) ;;
     33      *)
     34        REPLACE_LCHOWN=1
     35        ;;
     36    esac
    2837  fi
    2938])
Note: See TracChangeset for help on using the changeset viewer.