Skip to content

Commit

Permalink
Fix build rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeters committed Aug 25, 2014
1 parent 2d33d0e commit 1688e32
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile.builds.in
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,12 @@ endif
# symlink the binaries
$(AM_V_at)cd $(CURRENT_BUILD)/bin && \
for binary in $(CVC4_BINARIES); do \
ln -sf ../src/main/$$binary \
. ; \
if test -x ../src/main/$$binary; then \
ln -sf ../src/main/$$binary \
. ; \
else \
rm -f "$$binary"; \
fi; \
done
# set up builds/doc and builds/examples
$(AM_V_at)rm -f bin; ln -sf $(CURRENT_BUILD)/bin bin
Expand Down

0 comments on commit 1688e32

Please sign in to comment.