Skip to content
Snippets Groups Projects
Commit ef9301ce authored by Anton Shestakov's avatar Anton Shestakov
Browse files

builddeb: read default distribution and codename from lsb_release

This makes `make deb` place packages into a more appropriately named directory
instead of just "debian-unknown".
parent a624bae2
No related branches found
No related tags found
No related merge requests found
......@@ -161,8 +161,7 @@
rm -rf dist/mercurial-*.mpkg
deb:
mkdir -p packages/debian-unknown
contrib/builddeb --distid debian --codename unknown
contrib/builddeb
docker-debian-jessie:
mkdir -p packages/debian-jessie
......
......@@ -8,8 +8,8 @@
BUILD=1
CLEANUP=1
DISTID=debian
CODENAME=jessie
DISTID=`(lsb_release -is 2> /dev/null | tr '[:upper:]' '[:lower:]') || echo debian`
CODENAME=`lsb_release -cs 2> /dev/null || echo unknown`
while [ "$1" ]; do
case "$1" in
--distid )
......@@ -84,6 +84,7 @@
if [ "$CLEANUP" ] ; then
echo
OUTPUTDIR=${OUTPUTDIR:=packages/$DISTID-$CODENAME}
mkdir -p "$OUTPUTDIR"
find ../mercurial*.deb ../mercurial_*.build ../mercurial_*.changes \
-type f -newer $control -print0 | \
xargs -Inarf -0 mv narf "$OUTPUTDIR"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment