Skip to content

Commit 0e0f410

Browse files
committed
minor build script fix-up
1 parent 6d06d03 commit 0e0f410

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

genman.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
22

3-
mkdir -p build && cd build && cmake .. && make -s && \
4-
help2man -n "measure stack usage in applications" -N -o stackusage.1 ./stackusage
3+
cd src && \
4+
help2man -n "measure stack usage in applications" -N -o stackusage.1 ./stackusage && \
5+
cd .. && \
6+
mkdir -p build && cd build && cmake .. && make -s
7+
8+

src/stackusage

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright (C) 2015-2018 Kristofer Berggren
3+
# Copyright (C) 2015-2019 Kristofer Berggren
44
# All rights reserved.
55
#
66
# stackusage is distributed under the BSD 3-Clause license, see LICENSE for details.
@@ -43,9 +43,9 @@ showusage()
4343

4444
showversion()
4545
{
46-
echo "stackusage v1.10"
46+
echo "stackusage v1.11"
4747
echo ""
48-
echo "Copyright (C) 2015-2018 Kristofer Berggren"
48+
echo "Copyright (C) 2015-2019 Kristofer Berggren"
4949
echo ""
5050
echo "stackusage is distributed under the BSD 3-Clause license."
5151
echo ""

src/stackusage.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH STACKUSAGE "1" "November 2018" "stackusage v1.1" "User Commands"
1+
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8.
2+
.TH STACKUSAGE "1" "November 2019" "stackusage v1.11" "User Commands"
33
.SH NAME
44
stackusage \- measure stack usage in applications
55
.SH SYNOPSIS
@@ -57,6 +57,6 @@ Written by Kristofer Berggren
5757
.SH "REPORTING BUGS"
5858
Report bugs at https://github.com/d99kris/stackusage
5959
.SH COPYRIGHT
60-
Copyright \(co 2015\-2017 Kristofer Berggren
60+
Copyright \(co 2015\-2019 Kristofer Berggren
6161
.PP
6262
stackusage is distributed under the BSD 3\-Clause license.

0 commit comments

Comments
 (0)