diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 12:13:48 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 14:27:54 -0700 |
commit | 08c5788020a16ef4b75dc62c4fa9a40fd2e3bfcd (patch) | |
tree | 7ef7678e3a8674a2e643a1fa80bed12cbabf8c0e /packaging | |
parent | 5a0f2fc2ccadd97e5394f2f7ac879a191e44771b (diff) | |
download | subsurface-08c5788020a16ef4b75dc62c4fa9a40fd2e3bfcd.tar.gz |
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 <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/ubuntu/make-package.sh | 8 |
1 files changed, 0 insertions, 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 - ) |