diff options
author | Stepan Kasal | 2007-12-04 19:21:47 +0100 |
---|---|---|
committer | Karel Zak | 2007-12-17 10:09:03 +0100 |
commit | d829a8df7ed609d1d8fd2280bb085b897c196dda (patch) | |
tree | d6dd0a9ddb81402f25637783a2dfcd12d5df2471 /sys-utils | |
parent | build-sys: use dist_man_MANS instead of man_MANS (diff) | |
download | kernel-qcow2-util-linux-d829a8df7ed609d1d8fd2280bb085b897c196dda.tar.gz kernel-qcow2-util-linux-d829a8df7ed609d1d8fd2280bb085b897c196dda.tar.xz kernel-qcow2-util-linux-d829a8df7ed609d1d8fd2280bb085b897c196dda.zip |
build-sys: use portable $(VAR:=) instead of gmake-specific $(addsuffix)
Signed-off-by: Stepan Kasal <skasal@redhat.com>
Diffstat (limited to 'sys-utils')
-rw-r--r-- | sys-utils/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/Makefile.am b/sys-utils/Makefile.am index 2c814dcbe..056f8e1fc 100644 --- a/sys-utils/Makefile.am +++ b/sys-utils/Makefile.am @@ -80,7 +80,7 @@ if ARCH_HPPA SETARCH_LINKS += parisc parisc64 parisc32 endif -SETARCH_MAN_LINKS = $(addsuffix .8, $(SETARCH_LINKS)) +SETARCH_MAN_LINKS = $(SETARCH_LINKS:=.8) dist_man_MANS += $(SETARCH_MAN_LINKS) CLEANFILES=$(SETARCH_MAN_LINKS) |