]> jfr.im git - irc/evilnet/znc.git/commitdiff
znc-buildmod: output where the module was written to
authorAlexey Sokolov <redacted>
Fri, 25 Dec 2020 16:05:04 +0000 (16:05 +0000)
committerAlexey Sokolov <redacted>
Fri, 25 Dec 2020 16:05:04 +0000 (16:05 +0000)
znc-buildmod.cmake.in

index 4b6a6567aaa1096c78210d45bb73f2d5e77ebcc7..bfb92d4ae5c8426834ce4182104a6a32d65314a5 100755 (executable)
@@ -89,6 +89,7 @@ with tempfile.TemporaryDirectory() as cmdir:
         subprocess.check_call(['cmake', '--build', '.'], cwd=build)
 
         for so in glob.iglob(os.path.join(build, '*.so')):
+            print('Writing {}'.format(os.path.join(os.getcwd(), os.path.basename(so))))
             try:
                 os.remove(os.path.basename(so))
             except OSError: