diff options
| author | Emilio Jesus Gallego Arias | 2018-07-05 17:57:56 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-07-05 17:57:56 +0200 |
| commit | 3ded029b42c7acf0b1b575cf4f0bb395a1d0d823 (patch) | |
| tree | f185b2de3a1e95feaa560d9be18c7670e4e7d8e1 | |
| parent | d19605b7bfb8425b53be4cab30bef462c4fa4d14 (diff) | |
| parent | cd45eda96c0026fc8962ba51b3e3750be946b96f (diff) | |
Merge PR #7994: Make bin/ in makefile, not configure.
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | configure.ml | 6 |
2 files changed, 4 insertions, 7 deletions
@@ -156,7 +156,10 @@ endif MAKE_OPTS := --warn-undefined-variable --no-builtin-rules -submake: alienclean +bin: + mkdir bin + +submake: alienclean | bin $(MAKE) $(MAKE_OPTS) -f Makefile.build $(MAKECMDGOALS) noconfig: diff --git a/configure.ml b/configure.ml index c13c5e1072..b264a26525 100644 --- a/configure.ml +++ b/configure.ml @@ -235,12 +235,6 @@ let get_date () = let short_date, full_date = get_date () - -(** Create the bin/ directory if non-existent *) - -let _ = if not (dir_exists "bin") then Unix.mkdir "bin" 0o755 - - (** * Command-line parsing *) type ide = Opt | Byte | No |
