From 5ff81c87e0bb6206c6a0a17afc84f703d0863215 Mon Sep 17 00:00:00 2001 From: Fernando Tapia Rico Date: Sat, 20 Jan 2018 12:56:08 +0100 Subject: [PATCH] Set proper path of common options used in manpages The path for the common options shared between elixir and iex was not changed when the `man/Makefile` was merged into the top-level `Makefile`. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7a334fb057c..5ad93fdbad6 100644 --- a/Makefile +++ b/Makefile @@ -243,13 +243,13 @@ build_man: man/iex.1 man/elixir.1 man/iex.1: $(Q) cp man/iex.1.in man/iex.1 - $(Q) sed -i.bak "/{COMMON}/r common" man/iex.1 + $(Q) sed -i.bak "/{COMMON}/r man/common" man/iex.1 $(Q) sed -i.bak "/{COMMON}/d" man/iex.1 $(Q) rm -f man/iex.1.bak man/elixir.1: $(Q) cp man/elixir.1.in man/elixir.1 - $(Q) sed -i.bak "/{COMMON}/r common" man/elixir.1 + $(Q) sed -i.bak "/{COMMON}/r man/common" man/elixir.1 $(Q) sed -i.bak "/{COMMON}/d" man/elixir.1 $(Q) rm -f man/elixir.1.bak