Skip to content

Commit 4e80a0f

Browse files
author
Kareem Zidane
authored
Merge pull request #192 from theosotr/fix
Fix race condition in Make builds
2 parents 6d9e82c + bd02d64 commit 4e80a0f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ $(LIBS): $(SRC) $(INCLUDE) Makefile
4747
install -m 644 $(INCLUDE) build/include
4848
mv $(LIB_VERSION) $(LIB_BASE) $(LIB_STATIC) build/lib
4949

50+
build/lib/$(LIB_BASE): build/lib/$(LIB_MAJOR)
51+
52+
build/lib/$(LIB_MAJOR): build/lib/$(LIB_VERSION)
53+
5054
.PHONY: install
5155
install: all
5256
mkdir -p $(addprefix $(DESTDIR)/, src lib include $(MANDIR))

0 commit comments

Comments
 (0)