From: Takashi Iwai Date: Fri, 13 May 2005 12:14:16 +0000 (+0000) Subject: Fix manpage installation X-Git-Tag: v1.0.9~10 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=228f63548268513409d4c4d5dcbe55fb49461357;p=alsa-utils.git Fix manpage installation Fix the installation of man page files (the exstion was omitted). --- diff --git a/alsaconf/Makefile.am b/alsaconf/Makefile.am index f12fadf..c295fdd 100644 --- a/alsaconf/Makefile.am +++ b/alsaconf/Makefile.am @@ -16,8 +16,8 @@ install-man8: loc="";; \ esac; \ $(mkinstalldirs) $(DESTDIR)$(mandir)$$loc/man$$ext; \ - echo " $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst"; \ - $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst; \ + echo " $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst.$$ext"; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst.$$ext; \ done uninstall-man8: @@ -32,6 +32,6 @@ uninstall-man8: *)\ loc="";; \ esac; \ - echo " rm -f $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst"; \ - rm -f $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst; \ + echo " rm -f $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst.$$ext"; \ + rm -f $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst.$$ext; \ done