Skip to content

Commit 581be25

Browse files
committed
Ignore existing build directories in Ubuntu PPA setup
1 parent e645cc4 commit 581be25

File tree

1 file changed

+2
-2
lines changed
  • deploy/ubuntu-ppa/debian

1 file changed

+2
-2
lines changed

deploy/ubuntu-ppa/debian/rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ clean:
1212
build: build-arch
1313

1414
build-arch:
15-
mkdir $(BUILDDIR)
15+
mkdir -p $(BUILDDIR)
1616
cd $(BUILDDIR);cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DOPTION_BUILD_TESTS=Off -DOPTION_BUILD_EXAMPLES=On -DOPTION_BUILD_DOCS=On ..
1717
make -C $(BUILDDIR)
18-
mkdir $(BUILDDEBUGDIR)
18+
mkdir -p $(BUILDDEBUGDIR)
1919
cd $(BUILDDEBUGDIR);cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr -DOPTION_BUILD_TESTS=Off -DOPTION_BUILD_EXAMPLES=Off -DOPTION_BUILD_DOCS=Off ..
2020
make -C $(BUILDDEBUGDIR)
2121

0 commit comments

Comments
 (0)