summaryrefslogtreecommitdiff
path: root/buildscripts/packager.py
diff options
context:
space:
mode:
authorAndrew Morrow <andrew.morrow@10gen.com>2020-01-15 19:51:39 +0000
committerevergreen <evergreen@mongodb.com>2020-01-15 19:51:39 +0000
commit3c0c136ecf80d60f512e96b9720af3845f401fd8 (patch)
treee8981c04b760b03bb623b2cfaf31d48ba84bc9a7 /buildscripts/packager.py
parentc9dbf657e1ef0fdda8a32d1080d4a7c3bb361c5e (diff)
downloadmongo-3c0c136ecf80d60f512e96b9720af3845f401fd8.tar.gz
SERVER-44763 Remove gotools from build and packaging
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-xbuildscripts/packager.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py
index defeb191af1..53ae83c6c10 100755
--- a/buildscripts/packager.py
+++ b/buildscripts/packager.py
@@ -491,7 +491,7 @@ def unpack_binaries_into(build_os, arch, spec, where):
try:
sysassert(["tar", "xvzf", rootdir + "/" + tarfile(build_os, arch, spec)])
release_dir = glob('mongodb-linux-*')[0]
- for releasefile in "bin", "LICENSE-Community.txt", "README", "THIRD-PARTY-NOTICES", "THIRD-PARTY-NOTICES.gotools", "MPL-2":
+ for releasefile in "bin", "LICENSE-Community.txt", "README", "THIRD-PARTY-NOTICES", "MPL-2":
print("moving file: %s/%s" % (release_dir, releasefile))
os.rename("%s/%s" % (release_dir, releasefile), releasefile)
os.rmdir(release_dir)
@@ -524,10 +524,7 @@ def make_package(distro, build_os, arch, spec, srcdir):
# packaging infrastructure will move the files to wherever they
# need to go.
unpack_binaries_into(build_os, arch, spec, sdir)
- # Remove the mongoreplay binary due to libpcap dynamic
- # linkage.
- if os.path.exists(sdir + "bin/mongoreplay"):
- os.unlink(sdir + "bin/mongoreplay")
+
return distro.make_pkg(build_os, arch, spec, srcdir)