diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2023-01-05 11:42:51 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2023-01-05 12:47:41 -0800 |
commit | 26bac321370acba2f651349dcc14beb37474a396 (patch) | |
tree | 9d6bd938e5caa111b088d7ac2ab093bbff213b8e | |
parent | b7c8754c90a957ef0fa5858cae372be26da69135 (diff) | |
download | coreutils-26bac321370acba2f651349dcc14beb37474a396.tar.gz |
ls: adjust to Gnulib renaming
* src/local.mk (src_ls_LDADD): In Gnulib,
LIB_HAS_ACL was renamed to FILE_HAS_ACL_LIB.
-rw-r--r-- | src/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/local.mk b/src/local.mk index 1faf50e57..3f664ed1a 100644 --- a/src/local.mk +++ b/src/local.mk @@ -288,7 +288,7 @@ src_uptime_LDADD += $(GETLOADAVG_LIBS) # for various ACL functions copy_ldadd += $(LIB_ACL) -src_ls_LDADD += $(LIB_HAS_ACL) +src_ls_LDADD += $(FILE_HAS_ACL_LIB) # for various xattr functions copy_ldadd += $(LIB_XATTR) |