Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
fixing lib64 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lnagel committed Oct 3, 2009
1 parent a02ef71 commit 20c708d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app-backup/nagios-backuppc/Manifest
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DIST check_backuppc-1.1.0.tar.gz 11036 RMD160 88f45df6acd920df66b10be6fc74156c34644cc3 SHA1 11766f925ceb72af6d0ab666d69c6082721a760c SHA256 f38675b67459e8b6ae616bca23646ec645f8c88ee34d4c53ec9e06f61b9559ca
EBUILD nagios-backuppc-1.1.0.ebuild 1282 RMD160 83ffa47a6693c0bed47bbeabbfbccc82f7ea3d80 SHA1 3ea20b9bebea3bbb9ae2edb36a67a75e1b21e44f SHA256 3b2a3870845b13c1a2e12a43309ac96ddbd57c3d2cc2dd5b8652726b92770ef4
EBUILD nagios-backuppc-1.1.0.ebuild 1407 RMD160 b29e7fd47b51de3f24252367a27f5d718581b79a SHA1 74802d9897c13935cdce97d4704a028038c164ae SHA256 2353acd2dc77b8a4698e96eb9a054056ee71088f9dd31a2d53ed69ecfea23917
MISC ChangeLog 0 RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 SHA1 da39a3ee5e6b4b0d3255bfef95601890afd80709 SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
MISC metadata.xml 253 RMD160 c0318abe33b31aa5d6279d10fc83c28cc6dd09c5 SHA1 605137e0dd74096a7c28e073f5f26df12aa7eb0f SHA256 3dc2ada999ee9ccc3016e9ccdd54c36b84eff8d7533b76bb7dda62d661a187ea
7 changes: 6 additions & 1 deletion app-backup/nagios-backuppc/nagios-backuppc-1.1.0.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ src_unpack() {
}

src_prepare() {
sed -i "s+NAGIOS_LIB+/usr/lib/nagios/plugins+" check_backuppc
if [[ -d "/usr/lib64/nagios/plugins" ]]; then
sed -i "s+NAGIOS_LIB+/usr/lib64/nagios/plugins+" check_backuppc
else
sed -i "s+NAGIOS_LIB+/usr/lib/nagios/plugins+" check_backuppc
fi

sed -i "s+BACKUPPC_LIB+/usr/lib+" check_backuppc
}

Expand Down

0 comments on commit 20c708d

Please sign in to comment.