mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:25:43 +01:00
Fix manpage installation
Fix the installation of man page files (the exstion was omitted).
This commit is contained in:
parent
1da1c52d03
commit
228f635482
1 changed files with 4 additions and 4 deletions
|
@ -16,8 +16,8 @@ install-man8:
|
||||||
loc="";; \
|
loc="";; \
|
||||||
esac; \
|
esac; \
|
||||||
$(mkinstalldirs) $(DESTDIR)$(mandir)$$loc/man$$ext; \
|
$(mkinstalldirs) $(DESTDIR)$(mandir)$$loc/man$$ext; \
|
||||||
echo " $(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; \
|
$(INSTALL_DATA) $$i $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst.$$ext; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-man8:
|
uninstall-man8:
|
||||||
|
@ -32,6 +32,6 @@ uninstall-man8:
|
||||||
*)\
|
*)\
|
||||||
loc="";; \
|
loc="";; \
|
||||||
esac; \
|
esac; \
|
||||||
echo " 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; \
|
rm -f $(DESTDIR)$(mandir)$$loc/man$$ext/$$inst.$$ext; \
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue