Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
105b13c8
Commit
105b13c8
authored
Nov 28, 2017
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bootstrap: warn if flex or bison are missing
parent
3167e69a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
bootstrap
bootstrap
+19
-0
No files found.
bootstrap
View file @
105b13c8
...
...
@@ -50,6 +50,25 @@ Otherwise, you will not be able to build a source tarball.
EOF
fi
# Check for flex and bison
if
!
flex
--version
>
/dev/null 2>&1
;
then
cat
<<
EOF
NOTE: flex appears to be missing. Please install it.
Otherwise, you might not be able to build properly.
==========================================================================
EOF
fi
if
!
bison
--version
>
/dev/null 2>&1
;
then
cat
<<
EOF
NOTE: bison appears to be missing. Please install it.
Otherwise, you might not be able to build properly.
==========================================================================
EOF
fi
###
### classic bootstrap stuff
###
...
...
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