Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
menhir
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
POTTIER Francois
menhir
Commits
9f327f08
Commit
9f327f08
authored
Oct 12, 2015
by
POTTIER Francois
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid using $(shell pwd) in Makefile, for better Windows compatibility.
parent
8830bf80
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
CHANGES
CHANGES
+3
-0
src/Makefile
src/Makefile
+5
-1
No files found.
CHANGES
View file @
9f327f08
2015/10/12:
Avoid using $(shell pwd) in Makefile, for better Windows compatibility.
2015/10/05:
Fixed a bug where inconsistent OCaml code was generated when --table
and --external-tokens were used together. (Reported by Darin Morrison.)
...
...
src/Makefile
View file @
9f327f08
...
...
@@ -61,7 +61,11 @@ stage1:
# Do not use . to refer to the current directory, because ocamlbuild
# descends into another directory when executing commands.
SRC
:=
$(
shell
pwd
)
# Do not use $(shell pwd) either, because this assumes we are running
# on a Unix platform, and can fail on Windows.
# So, use .., which works fine if ocamlbuild has effectively descended
# into a subdirectory.
SRC
:=
..
FLAGS
:=
-v
-lg
1
-la
1
-lc
1
--comment
--infer
--stdlib
$(SRC)
--strict
--fixed-exception
...
...
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