[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-workers] 1.1.rc3 - small patch for uip/Makefile.in
From: |
Valdis . Kletnieks |
Subject: |
[Nmh-workers] 1.1.rc3 - small patch for uip/Makefile.in |
Date: |
Thu, 12 Aug 2004 20:22:02 -0400 |
The current Makefile puts install-mh into $prefix/bin and $prefix/lib using a
hard link. Doing this into /usr/local on a Fedora box with SELinux enabled
causes a warning message when you relabel /usr/local, because by default the
rules attach different security labels to inodes found under /usr/local/lib and
/usr/local/bin, and the hardlinked file ends up with 2 conflicting rules.
Changing it to a symlink fixes the problem.
--- nmh/uip/Makefile.in.ln-s 2004-08-12 20:06:08.469648394 -0400
+++ nmh/uip/Makefile.in 2004-08-12 20:07:09.210058506 -0400
@@ -271,7 +271,7 @@ install-lcmds:
$(LN) $(bindir)/folder $(bindir)/folders
$(LN) $(bindir)/show $(bindir)/prev
$(LN) $(bindir)/show $(bindir)/next
- $(LN) $(bindir)/install-mh $(libdir)/install-mh
+ $(LN) -s $(bindir)/install-mh $(libdir)/install-mh
# install misc support binaries
install-misc:
pgpVQvMp_wSL0.pgp
Description: PGP signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-workers] 1.1.rc3 - small patch for uip/Makefile.in,
Valdis . Kletnieks <=