From: Michael Tremer Date: Thu, 28 Jan 2010 11:11:55 +0000 (+0100) Subject: bc: Fix installation of man pages. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8058f4e3b237b79dcb7e47ff2f1000a3b5741963;p=ipfire-3.x.git bc: Fix installation of man pages. --- diff --git a/pkgs/core/bc/bc.nm b/pkgs/core/bc/bc.nm index 0e436ac3a..ed3cc13d5 100644 --- a/pkgs/core/bc/bc.nm +++ b/pkgs/core/bc/bc.nm @@ -54,3 +54,13 @@ define STAGE_PREPARE_CMDS cd $(DIR_APP) && sed -i '/stdlib/a #include ' lib/number.c cd $(DIR_APP) && sed -i 's/program.*save/static &/' bc/load.c endef + +define STAGE_BUILD + cd $(DIR_APP) && \ + ./configure \ + --prefix=/usr \ + --disable-static \ + --mandir=/usr/share/man + + cd $(DIR_APP) && make $(PARALLELISMFLAGS) +endef