|
Revision 46d294f645abf02f3d4dc4514cf53092a3e80e33, 367 bytes
(checked in by Eric Paris <eparis@redhat.com>, 1 year ago)
|
libselinux: Update Makefiles to handle /usrmove
Move everything into /usr/* and just put links from /*. The whole /usr
thing hasn't really worked in all situations for a long long time. Just
accept that fact and move along.
Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Dan Walsh <dwalsh@redhat.com>
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
# Installation directories. |
|---|
| 2 |
MAN8DIR ?= $(DESTDIR)/usr/share/man/man8 |
|---|
| 3 |
MAN5DIR ?= $(DESTDIR)/usr/share/man/man5 |
|---|
| 4 |
MAN3DIR ?= $(DESTDIR)/usr/share/man/man3 |
|---|
| 5 |
|
|---|
| 6 |
all: |
|---|
| 7 |
|
|---|
| 8 |
install: all |
|---|
| 9 |
mkdir -p $(MAN3DIR) |
|---|
| 10 |
mkdir -p $(MAN5DIR) |
|---|
| 11 |
mkdir -p $(MAN8DIR) |
|---|
| 12 |
install -m 644 man3/*.3 $(MAN3DIR) |
|---|
| 13 |
install -m 644 man5/*.5 $(MAN5DIR) |
|---|
| 14 |
install -m 644 man8/*.8 $(MAN8DIR) |
|---|
| 15 |
|
|---|
| 16 |
indent distclean clean: |
|---|