]> git.alsa-project.org Git - alsa-utils.git/commitdiff
Fix manpage installation
authorTakashi Iwai <tiwai@suse.de>
Fri, 13 May 2005 12:14:16 +0000 (12:14 +0000)
committerTakashi Iwai <tiwai@suse.de>
Fri, 13 May 2005 12:14:16 +0000 (12:14 +0000)
Fix the installation of man page files (the exstion was omitted).

alsaconf/Makefile.am

index f12fadf61a36f14e1a1cdc2630a364c2639e0640..c295fdd3aa361a9502496fb41ef679d170e59b55 100644 (file)
@@ -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