From db546456d28d0319d73fb2cd9414edc2e9638b41 Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Wed, 4 May 2016 17:26:02 +0100 Subject: [PATCH] building.md: Fix typos in INSTALL_PREFIX Signed-off-by: Brendan Le Foll --- docs/building.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/building.md b/docs/building.md index c82e111..628a6e5 100644 --- a/docs/building.md +++ b/docs/building.md @@ -172,7 +172,7 @@ You can get `cpack` to generate an IPK or RPM package fairly easily if you have the correct packaging tools ~~~~~~~~~~~~~{.sh} -cmake -DIPK=ON -DCMAKE_INSTAL_PREFIX=/usr .. +cmake -DIPK=ON -DCMAKE_INSTALL_PREFIX=/usr .. make package ~~~~~~~~~~~~~ @@ -180,5 +180,5 @@ To use RPM simply enable the RPM option. You'll need `rpmbuild` installed on you build machine. ~~~~~~~~~~~~~{.sh} -cmake -DRPM=ON -DCMAKE_INSTAL_PREFIX=/usr .. +cmake -DRPM=ON -DCMAKE_INSTALL_PREFIX=/usr .. ~~~~~~~~~~~~~