From 08c5788020a16ef4b75dc62c4fa9a40fd2e3bfcd Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 19 Apr 2020 12:13:48 -0700 Subject: [PATCH] build-system: cleanup Ubuntu/Debian script This code block was also for the OBS builds and is no longer needed now that we have to separate make-package scripts. Signed-off-by: Dirk Hohndel --- packaging/ubuntu/make-package.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index f0e4700fe..386c0f91b 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -49,14 +49,6 @@ cd distrobuilds if [[ ! -d subsurface_$VERSION ]]; then mkdir subsurface_$VERSION - if [[ "$GITREVISION" != "" ]] ; then - rm -f subsurfacedaily-$VERSION - ln -s subsurface_$VERSION subsurfacedaily-$VERSION - else - rm -f subsurface-$VERSION - ln -s subsurface_$VERSION subsurface-$VERSION - fi - echo "copying sources" (cd ../subsurface ; tar cf - . ) | (cd subsurface_$VERSION ; tar xf - )