summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-05-20 10:18:33 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2021-05-21 18:03:40 +0300
commit525bf049108f5ea8e331282c7f370613d1c6f079 (patch)
tree703966566b2c124bb2020c2a0b11e3f0ea90ec57
parent7bdb8d125e9e4524bee98667734f113617347b63 (diff)
downloadmariadb-git-525bf049108f5ea8e331282c7f370613d1c6f079.tar.gz
Cleanup: Remove the compile-innodb script
The InnoDB storage engine is being built by default. There is no need to have an unportable script that encourages in-source builds and a particular build driver.
-rwxr-xr-xstorage/innobase/compile-innodb25
1 files changed, 0 insertions, 25 deletions
diff --git a/storage/innobase/compile-innodb b/storage/innobase/compile-innodb
deleted file mode 100755
index 47073d3cea9..00000000000
--- a/storage/innobase/compile-innodb
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
-#
-# This program is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License as published by the Free Software
-# Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
-#
-
-# we assume this script is in storage/innobase/
-
-MYSQL_ROOT="$(dirname ${0})/../.."
-
-cd ${MYSQL_ROOT}
-
-cmake -DWITH_INNOBASE_STORAGE_ENGINE:BOOL=ON
-make -j$(nproc)