summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorSpencer Jackson <spencer.jackson@mongodb.com>2019-03-22 13:22:44 -0400
committerSpencer Jackson <spencer.jackson@mongodb.com>2019-05-03 18:29:59 -0400
commit4ee04cf1d100256ea7d06e2e9bb4423e1d91572d (patch)
treef0ce6fa329bd66e362ea87476c7f62a75e3d972e /buildscripts
parentfea2b842f24c5cc3786a2d60428905a0e0513e3d (diff)
downloadmongo-4ee04cf1d100256ea7d06e2e9bb4423e1d91572d.tar.gz
SERVER-40242 Update banner inclusions for vendored tools
(cherry picked from commit e5d7bb7eaf2b26be77d6011036387bc21debd129) (cherry picked from commit c9d4705efff035eb88319e79658de77bb0579094)
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/packager-enterprise.py2
-rwxr-xr-xbuildscripts/packager.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/packager-enterprise.py b/buildscripts/packager-enterprise.py
index 8629be1963f..50d54f83489 100755
--- a/buildscripts/packager-enterprise.py
+++ b/buildscripts/packager-enterprise.py
@@ -206,7 +206,7 @@ def unpack_binaries_into(build_os, arch, spec, where):
try:
packager.sysassert(["tar", "xvzf", rootdir+"/"+tarfile(build_os, arch, spec)])
release_dir = glob('mongodb-linux-*')[0]
- for releasefile in "bin", "snmp", "LICENSE.txt", "README", "THIRD-PARTY-NOTICES", "MPL-2":
+ for releasefile in "bin", "snmp", "LICENSE.txt", "README", "THIRD-PARTY-NOTICES", "THIRD-PARTY-NOTICES.gotools", "MPL-2":
os.rename("%s/%s" % (release_dir, releasefile), releasefile)
os.rmdir(release_dir)
except Exception:
diff --git a/buildscripts/packager.py b/buildscripts/packager.py
index d78053570d7..a43ba2e588b 100755
--- a/buildscripts/packager.py
+++ b/buildscripts/packager.py
@@ -420,7 +420,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", "MPL-2":
+ for releasefile in "bin", "LICENSE-Community.txt", "README", "THIRD-PARTY-NOTICES", "THIRD-PARTY-NOTICES.gotools", "MPL-2":
print "moving file: %s/%s" % (release_dir, releasefile)
os.rename("%s/%s" % (release_dir, releasefile), releasefile)
os.rmdir(release_dir)