Properly install man pages.
authorDavid Given <dg@cowlark.com>
Sat, 7 Jan 2017 21:38:30 +0000 (22:38 +0100)
committerDavid Given <dg@cowlark.com>
Sat, 7 Jan 2017 21:38:30 +0000 (22:38 +0100)
util/amisc/build.lua
util/arch/build.lua
util/misc/build.lua

index 1d856f1..22fa396 100644 (file)
@@ -15,7 +15,7 @@ local function simpleprogram(name)
                name = name.."-pkg",
                map = {
                        ["$(INSDIR)/bin/"..name] = "+"..name,
-                       ["$(PLATIND)/man/man1/"..name..".1"] = "./"..name..".1",
+                       ["$(INSDIR)/share/man/man1/"..name..".1"] = "./"..name..".1",
                }
        }
 end
index 54b05f9..160b9c2 100644 (file)
@@ -17,6 +17,6 @@ installable {
        name = "pkg",
        map = {
                ["$(INSDIR)/bin/aal"] = "+aal",
-               ["$(PLATIND)/man/man1/aal.1"] = "./aal.1"
+               ["$(INSDIR)/share/man/man1/aal.1"] = "./aal.1"
        }
 }
index dd207bb..e8dfbca 100644 (file)
@@ -41,59 +41,7 @@ installable {
                ["$(PLATDEP)/em_encode"] = "+encode",
                ["$(PLATDEP)/em_decode"] = "+decode",
                ["$(INSDIR)/bin/esize"] = "+esize",
-               ["$(PLATIND)/man/man1/esize.1"] = "./esize.1",
-               ["$(PLATIND)/man/man6/em_decode.6"] = "./em_decode.6"
+               ["$(INSDIR)/share/man/man1/esize.1"] = "./esize.1",
+               ["$(INSDIR)/share/man/man6/em_decode.6"] = "./em_decode.6"
        }
 }
-
---[[
-D := util/misc
-
-define build-misc-impl
-       $(call reset)
-       $(call cfile, $D/esize.c)
-       $(call cprogram, $(BINDIR)/esize)
-       $(call installto, $(INSDIR)/bin/esize)
-
-       $(call reset)
-       $(eval q := $D/esize.1)
-       $(call installto, $(INSDIR)/share/man/man1/esize.1)
-
-       $(call reset)
-       $(eval objdir := encode)
-       $(call cfile, $D/convert.c)
-       $(eval $q: $(INCDIR)/em_comp.h $(INCDIR)/em_codeEK.h)
-       $(call rawfile, $(LIBREAD_EMEV))
-       $(call rawfile, $(LIBEMK))
-       $(call rawfile, $(LIBEM_DATA))
-       $(call rawfile, $(LIBALLOC))
-       $(call rawfile, $(LIBPRINT))
-       $(call rawfile, $(LIBSTRING))
-       $(call rawfile, $(LIBSYSTEM))
-       $(call cprogram, $(BINDIR)/em_encode)
-       $(call installto, $(PLATDEP)/em_encode)
-       $(eval EM_ENCODE := $o)
-       $(eval ACK_CORE_TOOLS += $o)
-
-       $(call reset)
-       $(eval objdir := decode)
-       $(call cfile, $D/convert.c)
-       $(eval $q: $(INCDIR)/em_comp.h $(INCDIR)/em_codeEK.h)
-       $(call rawfile, $(LIBREAD_EMKV))
-       $(call rawfile, $(LIBEME))
-       $(call rawfile, $(LIBEM_DATA))
-       $(call rawfile, $(LIBALLOC))
-       $(call rawfile, $(LIBPRINT))
-       $(call rawfile, $(LIBSTRING))
-       $(call rawfile, $(LIBSYSTEM))
-       $(call cprogram, $(BINDIR)/em_decode)
-       $(call installto, $(PLATDEP)/em_decode)
-       $(eval EM_DECODE := $o)
-
-       $(call reset)
-       $(eval q := $D/em_decode.6)
-       $(call installto, $(INSDIR)/share/man/man6/em_decode.6)
-endef
-
-$(eval $(build-misc-impl))
---]]