Skip to content

Commit

Permalink
lsof: Install into BINDIR instead of SBINDIR
Browse files Browse the repository at this point in the history
There is no reason to have it in `SBINDIR`. The Linux From Scratch book
also installs it into `/usr/bin`.
  • Loading branch information
pmenzel committed Feb 22, 2018
1 parent 59628ba commit afa71a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lsof-4.87-0.bee
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ mee_build() {
}

mee_install() {
mkdir -pv ${D}{${SBINDIR},${MANDIR}/man8}
mkdir -pv ${D}{${BINDIR},${MANDIR}/man8}

install -m 755 lsof ${D}${SBINDIR}
install -m 755 lsof ${D}${BINDIR}
install -m 644 lsof.8 ${D}${MANDIR}/man8
}
## by default this may be 'make install DESTDIR="${D}"'
Expand Down

0 comments on commit afa71a4

Please sign in to comment.