Skip to content

Commit 2143c2d

Browse files
committed
Fix cmake directory
1 parent 6fc6499 commit 2143c2d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/debian/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ git checkout v${CCACHE_VERSION}
182182
# Build, install, and clean up.
183183
mkdir build
184184
cd build
185-
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF
185+
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF ..
186186
make
187187
make install
188188
cd ../..
@@ -297,7 +297,7 @@ git checkout v${CCACHE_VERSION}
297297
# Build, install, and clean up.
298298
mkdir build
299299
cd build
300-
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF
300+
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF ..
301301
make
302302
make install
303303
cd ../..

docker/ubuntu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ git checkout v${CCACHE_VERSION}
155155
# Build, install, and clean up.
156156
mkdir build
157157
cd build
158-
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF
158+
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF ..
159159
make
160160
make install
161161
cd ../..
@@ -265,7 +265,7 @@ git checkout v${CCACHE_VERSION}
265265
# Build, install, and clean up.
266266
mkdir build
267267
cd build
268-
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF
268+
cmake -D CMAKE_BUILD_TYPE=Release -D ENABLE_TESTING=OFF ..
269269
make
270270
make install
271271
cd ../..

0 commit comments

Comments
 (0)