diff options
author | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-03-27 11:11:15 +0000 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-03-27 11:11:15 +0000 |
commit | 12496f1b5e3942583ca54eddadc73d2a59eac9a3 (patch) | |
tree | 700c8782611cb248cd9245c8fb4890c51456e1df /scons | |
parent | 4a232f009a93c09340391cde4848c4eae966023e (diff) | |
download | opt-12496f1b5e3942583ca54eddadc73d2a59eac9a3.tar.gz opt-12496f1b5e3942583ca54eddadc73d2a59eac9a3.tar.xz |
(2.2) scons: use install to handle the man pages to fix a permission bug and prevent them in the future.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/.footprint | 2 | ||||
-rw-r--r-- | scons/Pkgfile | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/scons/.footprint b/scons/.footprint index ca798be59..117372432 100644 --- a/scons/.footprint +++ b/scons/.footprint @@ -273,5 +273,5 @@ drwxr-xr-x root/root usr/lib/scons/SCons/Tool/ -rw-r--r-- root/root usr/lib/scons/SCons/exitfuncs.pyc drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man1/ --r--r--r-- root/root usr/man/man1/scons.1.gz +-rw-r--r-- root/root usr/man/man1/scons.1.gz -rw-r--r-- root/root usr/man/man1/sconsign.1.gz diff --git a/scons/Pkgfile b/scons/Pkgfile index 11499c9f3..545deaaf3 100644 --- a/scons/Pkgfile +++ b/scons/Pkgfile @@ -8,11 +8,11 @@ version=0.96.1 release=1 source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz) -build () { +build() { cd $name-$version + python setup.py install --prefix=/usr --root=$PKG - mkdir -p $PKG/usr/man/man1 - cp scons.1 $PKG/usr/man/man1 - cp sconsign.1 $PKG/usr/man/man1 + install -d $PKG/usr/man/man1 + install -m 644 scons{,ign}.1 $PKG/usr/man/man1 } |