Opened 16 years ago
Closed 16 years ago
#2225 closed defect (fixed)
IPRoute2-2.6.26 - wrong installation prefix
Reported by: | Steffen Pankratz | Owned by: | DJ Lucas |
---|---|---|---|
Priority: | high | Milestone: | 6.4 |
Component: | Book | Version: | SVN |
Severity: | blocker | Keywords: | |
Cc: |
Description
all binaries get installed in /usr/sbin instead of /sbin
because the Makefile was changed
install -m 0755 -d $(DESTDIR)$(SBINDIR)
DESTDIR is set to /usr (first line of file Makefile)
The correct command would be:
make SBINDIR=/sbin DESTDIR= install
According to Makefile SBINDIR is set to /sbin by default, so is this really necessary for the make and the make install call?
Change History (5)
comment:1 by , 16 years ago
Milestone: | → 6.4 |
---|---|
Priority: | normal → high |
Type: | task → defect |
comment:2 by , 16 years ago
Severity: | normal → major |
---|
Just an update that this issue was also noted in ticket #2205, which has been closed. This is a real issue that needs to be addressed
comment:3 by , 16 years ago
Severity: | major → blocker |
---|
comment:4 by , 16 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
Note:
See TracTickets
for help on using tickets.
I actually use DESTDIR for my LFS installation and this is perhaps why this went unnoticed. Someone who doesn't use DESTDIR will have to confirm and test this.
Thanks for creating the ticket.