Revision: | 1.4 |
Committed: | Wed Mar 28 00:55:07 2007 UTC (18 years, 1 month ago) by elmer |
Branch: | MAIN |
Changes since 1.3: | +2 -4 lines |
Log Message: | Override -o/-g of install from bin.bin to the user/group doing the build on all platforms, not just Darwin. |
# | User | Rev | Content |
---|---|---|---|
1 | eulisse | 1.1 | ### RPM external gdbm 1.8.3 |
2 | Source: http://rm.mirror.garr.it/mirrors/gnuftp/gnu/%{n}/%{n}-%{v}.tar.gz | ||
3 | |||
4 | elmer | 1.2 | %define thisuser %(id -u) |
5 | %define thisgroup %(id -g) | ||
6 | |||
7 | eulisse | 1.1 | %build |
8 | elmer | 1.4 | perl -p -i -e "s|BINOWN = bin|BINOWN = %{thisuser}|g" Makefile.in; |
9 | perl -p -i -e "s|BINGRP = bin|BINGRP = %{thisgroup}|g" Makefile.in;; | ||
10 | eulisse | 1.1 | ./configure --prefix=%{i} |
11 | make %makeprocesses | ||
12 | eulisse | 1.3 | # |