pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/pkgtools/mktools



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Tue Jun 14 08:45:33 UTC 2022

Modified Files:
        pkgsrc/pkgtools/mktools: Makefile
        pkgsrc/pkgtools/mktools/files: mk-buildlink-symlinks.c

Log Message:
mktools: Update to 20220614.

Add an explicit exit(0) to mk-buildlink-symlinks rather than relying on the
exit status of the last function.  Fixes issue seen on CentOS 7.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/pkgtools/mktools/Makefile
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/pkgtools/mktools/files/mk-buildlink-symlinks.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/mktools/Makefile
diff -u pkgsrc/pkgtools/mktools/Makefile:1.1 pkgsrc/pkgtools/mktools/Makefile:1.2
--- pkgsrc/pkgtools/mktools/Makefile:1.1        Tue Jun  7 09:53:36 2022
+++ pkgsrc/pkgtools/mktools/Makefile    Tue Jun 14 08:45:33 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2022/06/07 09:53:36 jperkin Exp $
+# $NetBSD: Makefile,v 1.2 2022/06/14 08:45:33 jperkin Exp $
 
-PKGNAME=               mktools-20220607
+PKGNAME=               mktools-20220614
 CATEGORIES=            pkgtools sysutils
 
 MAINTAINER=            jperkin%pkgsrc.org@localhost

Index: pkgsrc/pkgtools/mktools/files/mk-buildlink-symlinks.c
diff -u pkgsrc/pkgtools/mktools/files/mk-buildlink-symlinks.c:1.1 pkgsrc/pkgtools/mktools/files/mk-buildlink-symlinks.c:1.2
--- pkgsrc/pkgtools/mktools/files/mk-buildlink-symlinks.c:1.1   Tue Jun  7 09:53:36 2022
+++ pkgsrc/pkgtools/mktools/files/mk-buildlink-symlinks.c       Tue Jun 14 08:45:33 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: mk-buildlink-symlinks.c,v 1.1 2022/06/07 09:53:36 jperkin Exp $ */
+/* $NetBSD: mk-buildlink-symlinks.c,v 1.2 2022/06/14 08:45:33 jperkin Exp $ */
 
 /*
  * Copyright (c) 2022 Jonathan Perkin <jonathan%perkin.org.uk@localhost>
@@ -72,4 +72,6 @@ main(int argc, char *argv[])
 
                free(path2);
        }
+
+       exit(0);
 }



Home | Main Index | Thread Index | Old Index