diff options
author | MySQL Build Team <build@mysql.com> | 2009-06-04 18:47:38 +0200 |
---|---|---|
committer | MySQL Build Team <build@mysql.com> | 2009-06-04 18:47:38 +0200 |
commit | 782b8f055069067fda1b53dde5da35b3040a43f3 (patch) | |
tree | 1cd8246b31eaf2ef21d833ff366fe214edb2bdd7 /include/Makefile.am | |
parent | fd3986af200c48209abea3bf679843e4df978529 (diff) | |
download | mariadb-git-782b8f055069067fda1b53dde5da35b3040a43f3.tar.gz |
Some portability fixes.
include/Makefile.am: use @PERL@ to call scripts/dheadgen.pl - don't rely on #! /usr/bin/perl
scripts/dheadgen.pl: use 2-arg open() for compatibility with older Perl versions
storage/innobase/srv/srv0srv.c: Don't use C++-style comments in C code
Diffstat (limited to 'include/Makefile.am')
-rw-r--r-- | include/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 214ef8862e9..dd6f53f7ca2 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -87,7 +87,7 @@ probes_mysql_dtrace.h: $(DTRACEPROVIDER) endif probes_mysql_nodtrace.h: $(DTRACEPROVIDER) - $(top_srcdir)/scripts/dheadgen.pl -f $(DTRACEPROVIDER) > $@ + @PERL@ $(top_srcdir)/scripts/dheadgen.pl -f $(DTRACEPROVIDER) > $@ # Don't update the files from bitkeeper %::SCCS/s.% |