Skip to content

Commit

Permalink
nvidia_current: Install man pages into private path
Browse files Browse the repository at this point in the history
Install man pages into version dependend path instead of into
/usr/share/man. This avoid conflicts if we have multiple versions
of nvidia_current installed in parallel.
  • Loading branch information
donald committed May 2, 2019
1 parent 6292f32 commit 712c1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvidia_current-418.56-0.bee
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ mee_build() {
mee_install() {
#bee_install

mkdir -pv ${D}${PREFIX}/{bin,lib,drivers,share}
mkdir -pv ${D}${PREFIX}/{bin,lib,drivers,man/man1}
mkdir -pv ${D}/usr/lib

NVDRV="nvidia_drv.so"
Expand Down Expand Up @@ -66,6 +66,6 @@ mee_install() {
for i in ${NVBIN[@]} ; do
echo "installing ${i} as bin/${i}"
install -v -c -m 755 ${i} ${D}${BINDIR}
install -v -c -m 644 ${i}.1.gz ${D}/usr/share/man/man1
install -v -c -m 644 ${i}.1.gz ${D}${PREFIX}/man/man1
done
}

0 comments on commit 712c1f6

Please sign in to comment.