Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
677c6887
Commit
677c6887
authored
Jan 05, 2001
by
tim@cane.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.in Change PERL test to use perl instead of perl5, if possible.
parent
3669828a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
configure.in
configure.in
+12
-4
No files found.
configure.in
View file @
677c6887
...
...
@@ -296,13 +296,21 @@ AC_PATH_PROG(CMP, cmp, cmp)
AC_PATH_PROG
(
CHMOD,
chmod
,
chmod
)
AC_PATH_PROG
(
HOSTNAME,
hostname
,
hostname
)
dnl We use a path
for
perl so the script startup works
AC_PATH_PROG
(
PERL5, perl5, no
)
dnl We make sure to use perl, not perl5,
in
hopes that the RPMs will
dnl not depend on the perl5 binary being installed
(
probably a bug
in
RPM
)
AC_PATH_PROG
(
PERL, perl, no
)
if
test
"
$PERL
5
"
!=
no
if
test
"
$PERL
"
!=
"no"
&&
$PERL
-e
'require 5'
>
/dev/null 2>&1
then
PERL
=
$PERL5
ac_cv_path_PERL
=
$ac_cv_path_PERL5
PERL5
=
$PERL
else
AC_PATH_PROG
(
PERL5, perl5, no
)
if
test
"
$PERL5
"
!=
no
then
PERL
=
$PERL5
ac_cv_path_PERL
=
$ac_cv_path_PERL5
fi
fi
AC_SUBST
(
HOSTNAME
)
AC_SUBST
(
PERL
)
AC_SUBST
(
PERL5
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment