The old stage1 is now stage0.5, which at least suggests that it's not an entirely consistent stage in general
7 lines
103 B
Bash
Executable file
7 lines
103 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
mkdir build
|
|
cd build
|
|
eval cmake .. $CMAKE_OPTIONS
|
|
make
|
|
(cd stage0.5; cpack)
|