URI:
       tlib9p: Fix compile error - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit ceb1ab90ff65d3c2ac3fc46546dc2eed206a37c3
   DIR parent 385a6d5877258cee0cac6151e6359c9206006b01
  HTML Author: Alexander Kapshuk <alexander.kapshuk@gmail.com>
       Date:   Tue, 31 Aug 2021 10:10:59 +0300
       
       lib9p: Fix compile error
       
       commit 385a6d5877258cee0cac6151e6359c9206006b01 removed src/lib9p/_post.c
       from the code base, but overlooked removing a reference to the
       _post.o object file from the src/lib9p/mkfile.
       
       This results in lib9p failing to compile:
       
       * Running on Darwin...
       * Compiler version:
               Apple clang version 12.0.5 (clang-1205.0.22.11)
       * Building mk...
       * Building everything (be patient)...
       >>> mk: don't know how to make '/Users/sasha/plan9port_fork/lib/lib9p.a(_post.o)' in /Users/sasha/plan9port_fork/src/lib9p
       mk: for i in ...  : exit status=exit(1)
       
       Remove _post.o from the list of dependent object files from
       src/lib9p/mkfile to have lib9p compile.
       
       Fixes: 385a6d587725 ("lib9p: Remove postmountsrv (#505)")
       
       Diffstat:
         M src/lib9p/mkfile                    |       1 -
       
       1 file changed, 0 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/src/lib9p/mkfile b/src/lib9p/mkfile
       t@@ -2,7 +2,6 @@
        
        LIB=lib9p.a
        OFILES=\
       -        _post.$O\
                dirread.$O\
                fid.$O\
                file.$O\