diff options
author | Ruediger Meier | 2018-01-20 19:06:22 +0100 |
---|---|---|
committer | Karel Zak | 2018-01-22 11:16:49 +0100 |
commit | 0da03d449021c5fae696d1ed6509e7604ab1483e (patch) | |
tree | 752b71ad2c94b3f66c7e8c8b9e3554bd482ae9a6 /libsmartcols | |
parent | build-sys: automake is able to find headers in builddir ... (diff) | |
download | kernel-qcow2-util-linux-0da03d449021c5fae696d1ed6509e7604ab1483e.tar.gz kernel-qcow2-util-linux-0da03d449021c5fae696d1ed6509e7604ab1483e.tar.xz kernel-qcow2-util-linux-0da03d449021c5fae696d1ed6509e7604ab1483e.zip |
build-sys: remove unneeded dependencies on bla.h.in
We have already automakes's automatic dependencies like
bla.h.in -> bla.h -> foo.o -> bar.la
An explicit direct dependency bla.h.in -> bar.la
is redundant and useless anyways.
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'libsmartcols')
-rw-r--r-- | libsmartcols/src/Makemodule.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libsmartcols/src/Makemodule.am b/libsmartcols/src/Makemodule.am index 62fdf1051..6f5f6072c 100644 --- a/libsmartcols/src/Makemodule.am +++ b/libsmartcols/src/Makemodule.am @@ -29,8 +29,7 @@ libsmartcols_la_CFLAGS = \ libsmartcols_la_DEPENDENCIES = \ libcommon.la \ - libsmartcols/src/libsmartcols.sym \ - libsmartcols/src/libsmartcols.h.in + libsmartcols/src/libsmartcols.sym libsmartcols_la_LDFLAGS = $(SOLIB_LDFLAGS) if HAVE_VSCRIPT |