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

[Git][xorg-team/app/xterm][debian-unstable] Fix typo in aclocal.m4



Title: GitLab

Sven Joachim pushed to branch debian-unstable at X Strike Force / app / xterm

Commits:

  • 501382e1
    by Sven Joachim at 2023-10-04T17:22:09+02:00
    Fix typo in aclocal.m4
    
    New patch wtmp-path.diff, fixing a typo in the CF_WITH_WTMP_PATH macro
    which leads to an incorrect path to the wtmp file in the manpage.
    

3 changed files:

Changes:

  • debian/changelog
    ... ... @@ -4,6 +4,8 @@ xterm (385-1) UNRELEASED; urgency=medium
    4 4
       * Use the new configure options --with-utmp-path=/var/run/utmp and
    
    5 5
         --with-wtmp-path=/var/log/wtmp to ensure correct paths to these files
    
    6 6
         in the manpage (Closes: #1042767).
    
    7
    +  * Add temporary patch wtmp-path.diff, fixing a typo in aclocal.m4 which
    
    8
    +    leads to an incorrect path to the wtmp file in the manpage.
    
    7 9
     
    
    8 10
      -- Sven Joachim <svenjoac@gmx.de>  Mon, 02 Oct 2023 18:02:34 +0200
    
    9 11
     
    

  • debian/patches/series
    1 1
     900_debian_xterm.diff
    
    2 2
     902_windowops.diff
    
    3 3
     904_fontops.diff
    
    4
    +wtmp-path.diff

  • debian/patches/wtmp-path.diff
    1
    +Description: Fix typo in aclocal.m4
    
    2
    + Fix a typo in the CF_WITH_WTMP_PATH macro which leads to an
    
    3
    + incorrect path to the wtmp file in the manpage.
    
    4
    +Author: Sven Joachim <svenjoac@gmx.de>
    
    5
    +
    
    6
    +---
    
    7
    + aclocal.m4 |    2 +-
    
    8
    + 1 file changed, 1 insertion(+), 1 deletion(-)
    
    9
    +
    
    10
    +--- a/aclocal.m4
    
    11
    ++++ b/aclocal.m4
    
    12
    +@@ -4625,7 +4625,7 @@ dnl CF_WITH_WTMP_PATH version: 1 updated
    
    13
    + dnl -----------------
    
    14
    + dnl Like CF_WITH_UTMP_PATH, but for the wtmp file.
    
    15
    + AC_DEFUN([CF_WITH_WTMP_PATH],[
    
    16
    +-AC_ARG_WITH(utmp-path,
    
    17
    ++AC_ARG_WITH(wtmp-path,
    
    18
    + 	[  --with-wtmp-path=XXX    use XXX rather than auto for wtmp path],
    
    19
    + 	[cf_wtmp_path=$withval],
    
    20
    + 	[cf_wtmp_path=auto])


  • Reply to: