diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2018-05-09 11:46:13 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2018-05-09 11:46:13 +0000 |
commit | 24e9e0ee71ed663c7984ece4b03a24441f1ac612 (patch) | |
tree | 5557f30844e9a2f4c9ec633b4319192a0a0cd929 /patches | |
parent | fe77a48c665fdbb0fe6b709c5ed412b5aaa1c89d (diff) | |
download | midipix_build-24e9e0ee71ed663c7984ece4b03a24441f1ac612.tar.bz2 midipix_build-24e9e0ee71ed663c7984ece4b03a24441f1ac612.tar.xz |
patches/mandoc-1.14.3.local.patch:Makefile.in: don't ln(1) w/ absolute target pathnames.
Diffstat (limited to 'patches')
-rw-r--r-- | patches/mandoc-1.14.3.local.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/mandoc-1.14.3.local.patch b/patches/mandoc-1.14.3.local.patch new file mode 100644 index 00000000..0cbd7bcd --- /dev/null +++ b/patches/mandoc-1.14.3.local.patch @@ -0,0 +1,20 @@ +--- mandoc-1.14.3/Makefile.in.orig 2018-05-02 13:56:07.000000000 +0000 ++++ mandoc-1.14.3/Makefile.in 2018-05-09 11:45:31.296000000 +0000 +@@ -1307,13 +1307,13 @@ + # Install makewhatis to .../sbin + install-exec-hook: + $(MKDIR_P) $(DESTDIR)$(sbindir) +- $(LN_S) $(DESTDIR)$(bindir)/mandoc$(EXEEXT) \ ++ $(LN_S) mandoc$(EXEEXT) \ + $(DESTDIR)$(sbindir)/makewhatis$(EXEEXT) +- $(LN_S) $(DESTDIR)$(bindir)/mandoc$(EXEEXT) \ ++ $(LN_S) mandoc$(EXEEXT) \ + $(DESTDIR)$(bindir)/man$(EXEEXT) +- $(LN_S) $(DESTDIR)$(bindir)/mandoc$(EXEEXT) \ ++ $(LN_S) mandoc$(EXEEXT) \ + $(DESTDIR)$(bindir)/apropos$(EXEEXT) +- $(LN_S) $(DESTDIR)$(bindir)/mandoc$(EXEEXT) \ ++ $(LN_S) mandoc$(EXEEXT) \ + $(DESTDIR)$(bindir)/whatis$(EXEEXT) + + # *sigh* |