Skip to content

Commit 72d856e

Browse files
committed
Added these to the EXTRA_DIST list
tools/makerelease.sh \ tools/README \ tools/updatesemanticversion.py \ modified: Makefile.am Revined the script to be easier to work with. modified: tools/makerelease.sh
1 parent e3f1314 commit 72d856e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Makefile.am

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,7 @@ scripts/ChangeLog2018 \
106106
scripts/ChangeLog2019 \
107107
scripts/ChangeLog2020 \
108108
scripts/CLEANUP \
109+
tools/makerelease.sh \
110+
tools/README \
111+
tools/updatesemanticversion.py \
109112
.travis.yml

tools/makerelease.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ then
1717
fi
1818
}
1919

20-
rm -rf /tmp/bld
21-
mkdir /tmp/bld
20+
bldloc=/tmp/bldrel
21+
rm -rf $bldloc
22+
mkdir $bldloc
2223
chkres $? "mkdir failed"
23-
cd /tmp/bld
24+
cd $bldloc
25+
chkres $? "cd failed"
2426
~/dwarf/code/configure
2527
chkres $? "configure failed"
2628
make dist
@@ -47,6 +49,8 @@ chkres $? "sha512sum pipe failed"
4749
# The fold(1) is just to make the web
4850
# release page easier to work with.
4951

52+
echo "The release is $bldloc/libdwarf-$d.tar.xz"
53+
date
5054
echo "Now do by hand:"
5155
echo "git tag -a v$d -m Release=$d"
5256
echo "git tag -a libdwarf-$d -m Release=$d"

0 commit comments

Comments
 (0)