diff options
author | Jim Meyering <meyering@redhat.com> | 2008-01-08 10:34:56 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-01-08 10:34:56 +0100 |
commit | 0c3544ddc20ad65a040cb0dfbd4be9e078ee333c (patch) | |
tree | cbe49229e482dda22f7ed31f7f2a4f1c701c12ec | |
parent | b84880d980d85dc68a1d43fec3ea4f18fd3feeda (diff) | |
download | coreutils-0c3544ddc20ad65a040cb0dfbd4be9e078ee333c.tar.xz |
Remove uses of now-undefined Makefile variable.
* src/Makefile.am (dir_LDADD, ls_LDADD, vdir_LDADD): Remove uses
of no-longer-defined variable, $(LIB_ACL_TRIVIAL).
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/Makefile.am | 8 |
2 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2008-01-08 Jim Meyering <meyering@redhat.com> + + Remove uses of now-undefined Makefile variable. + * src/Makefile.am (dir_LDADD, ls_LDADD, vdir_LDADD): Remove uses + of no-longer-defined variable, $(LIB_ACL_TRIVIAL). + 2008-01-07 Jim Meyering <meyering@redhat.com> cp (but not copy.c): plug a small leak. diff --git a/src/Makefile.am b/src/Makefile.am index 2f40a04b6..efcea5b9c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -*-Makefile-*- -## Copyright (C) 1990, 1991, 1993-2007 Free Software Foundation, Inc. +## Copyright (C) 1990, 1991, 1993-2008 Free Software Foundation, Inc. ## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -126,9 +126,9 @@ uptime_LDADD = $(LDADD) $(POW_LIB) $(GETLOADAVG_LIBS) su_LDADD = $(LDADD) $(LIB_CRYPT) -dir_LDADD += $(LIB_ACL_TRIVIAL) $(LIB_ACL) -ls_LDADD += $(LIB_ACL_TRIVIAL) $(LIB_ACL) -vdir_LDADD += $(LIB_ACL_TRIVIAL) $(LIB_ACL) +dir_LDADD += $(LIB_ACL) +ls_LDADD += $(LIB_ACL) +vdir_LDADD += $(LIB_ACL) cp_LDADD += $(LIB_ACL) mv_LDADD += $(LIB_ACL) ginstall_LDADD += $(LIB_ACL) |