diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-02-04 21:18:21 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-02-04 21:18:21 +0100 |
commit | 2b7802413a365c7dbe513ecfdce4c4e4640209c6 (patch) | |
tree | 42eb997ad93a44a07f03ec55bb9db52778819598 /base/pkgutils/Pkgfile | |
parent | 9c7a2c59ee128b00024b8a2723283fc9ff3372fd (diff) | |
download | nutyx-extra-2b7802413a365c7dbe513ecfdce4c4e4640209c6.tar.gz nutyx-extra-2b7802413a365c7dbe513ecfdce4c4e4640209c6.tar.bz2 nutyx-extra-2b7802413a365c7dbe513ecfdce4c4e4640209c6.tar.xz nutyx-extra-2b7802413a365c7dbe513ecfdce4c4e4640209c6.zip |
pkgutils, correction Pkgfile
Diffstat (limited to 'base/pkgutils/Pkgfile')
-rw-r--r-- | base/pkgutils/Pkgfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/pkgutils/Pkgfile b/base/pkgutils/Pkgfile index a139cc814..4b58c36bf 100644 --- a/base/pkgutils/Pkgfile +++ b/base/pkgutils/Pkgfile @@ -16,12 +16,12 @@ make DESTDIR=$PKG install case `uname -m` in x86_64) sed -i "s/march=native/mtune=generic/" $PKG/etc/pkgmk.conf - sed -i "/\".md5sum\"/\".md5sum.x86_64\"/" $PKG/usr/bin/pkgmk - sed -i "/\".footprint\"/\".footprint.x86_64\"/" $PKG/usr/bin/pkgmk;; + sed -i "s/\".md5sum\"/\".md5sum.x86_64\"/" $PKG/usr/bin/pkgmk + sed -i "s/\".footprint\"/\".footprint.x86_64\"/" $PKG/usr/bin/pkgmk;; i?86) sed -i "s/native/i686/" $PKG/etc/pkgmk.conf - sed -i "/\".md5sum\"/\".md5sum.i686\"/" $PKG/usr/bin/pkgmk - sed -i "/\".footprint\"/\".footprint.i686\"/" $PKG/usr/bin/pkgmk;; + sed -i "s/\".md5sum\"/\".md5sum.i686\"/" $PKG/usr/bin/pkgmk + sed -i "s/\".footprint\"/\".footprint.i686\"/" $PKG/usr/bin/pkgmk;; esac mv $PKG/usr/man \ $PKG/usr/share/man |