Skip to content

Commit bc12a19

Browse files
committed
Merge branch 'mysql-5.6' into mysql-5.7
2 parents 25106b8 + 7e2791a commit bc12a19

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

scripts/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,12 @@ IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
216216
STRING(REGEX REPLACE "-std=c..[0-9]+" "" CXXFLAGS "${CXXFLAGS}")
217217
ENDIF()
218218

219+
IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
220+
SET (PERL_PATH "/usr/local/bin/perl")
221+
ELSE()
222+
SET (PERL_PATH "/usr/bin/perl")
223+
ENDIF()
224+
219225
IF(UNIX)
220226
# SHELL_PATH, FIND_PROC, CHECK_PID are used by mysqld_safe
221227
IF(CMAKE_SYSTEM_NAME MATCHES "SunOS")

scripts/dheadgen.pl

100755100644
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
#!/usr/bin/perl -w
2-
3-
#
4-
# Copyright (c) 2008, 2009 Sun Microsystems, Inc.
5-
# Use is subject to license terms.
6-
#
7-
1+
# Copyright (c) 2008, 2017, Oracle and/or its affiliates. All rights reserved.
82
#
93
# Redistribution and use in source and binary forms, with or without
104
# modification, are permitted provided that the following conditions are met:

scripts/mysql_config.pl.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!/usr/bin/perl
1+
#!@PERL_PATH@
22
# -*- cperl -*-
33
#
4-
# Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
4+
# Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

scripts/mysqld_multi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#!/usr/bin/perl
1+
#!@PERL_PATH@
22

3-
# Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
3+
# Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
44
#
55
# This program is free software; you can redistribute it and/or
66
# modify it under the terms of the GNU Library General Public

scripts/mysqldumpslow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env perl
1+
#!@PERL_PATH@
22

33
# Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
44
#

0 commit comments

Comments
 (0)