diff options
author | Karel Zak | 2012-06-04 10:36:37 +0200 |
---|---|---|
committer | Karel Zak | 2012-06-26 20:50:53 +0200 |
commit | d77ab74af75cbb5d10875ee156af3078c5d40700 (patch) | |
tree | fb32b1e985fb03f1366fc139d7d2f8c6590d8a89 /term-utils | |
parent | build-sys: remove include-Makefile.am (diff) | |
download | kernel-qcow2-util-linux-d77ab74af75cbb5d10875ee156af3078c5d40700.tar.gz kernel-qcow2-util-linux-d77ab74af75cbb5d10875ee156af3078c5d40700.tar.xz kernel-qcow2-util-linux-d77ab74af75cbb5d10875ee156af3078c5d40700.zip |
build-sys: convert lib/ to libcommon.la
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'term-utils')
-rw-r--r-- | term-utils/Makemodule.am | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/term-utils/Makemodule.am b/term-utils/Makemodule.am index 419aec535..d3528c6a3 100644 --- a/term-utils/Makemodule.am +++ b/term-utils/Makemodule.am @@ -20,9 +20,7 @@ if BUILD_AGETTY sbin_PROGRAMS += agetty dist_man_MANS += term-utils/agetty.8 agetty_SOURCES = term-utils/agetty.c -if !HAVE_LANGINFO -agetty_SOURCES += lib/langinfo.c -endif +agetty_LDADD = libcommon.la endif # BUILD_AGETTY @@ -60,14 +58,11 @@ usrbin_exec_PROGRAMS += wall wall_SOURCES = \ term-utils/wall.c \ term-utils/ttymsg.c \ - term-utils/ttymsg.h \ - lib/strutils.c \ - lib/fileutils.c - + term-utils/ttymsg.h dist_man_MANS += term-utils/wall.1 wall_CFLAGS = $(SUID_CFLAGS) $(AM_CFLAGS) wall_LDFLAGS = $(SUID_LDFLAGS) $(AM_LDFLAGS) - +wall_LDADD = libcommon.la if USE_TTY_GROUP if MAKEINSTALL_DO_CHOWN install-exec-hook-wall:: |