You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/mongo-tools/files/mongo-tools-3.2.10-pie.patch

13 lines
551 B

diff -uNr mongo-tools-r3.2.10.ORIG/build.sh mongo-tools-r3.2.10/build.sh
--- mongo-tools-r3.2.10.ORIG/build.sh 2016-11-15 16:15:09.487441283 +0000
+++ mongo-tools-r3.2.10/build.sh 2016-11-15 16:15:23.127235064 +0000
@@ -22,7 +22,7 @@
for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog; do
echo "Building ${i}..."
- go build -o "bin/$i" -tags "$tags" "$i/main/$i.go"
+ go build -buildmode=pie -o "bin/$i" -tags "$tags" "$i/main/$i.go"
./bin/$i --version
done