Skip to content

Commit 8c4aa72

Browse files
committed
Merge 64412 from mainline.
Avoid order files for now, as they aren't supported in 3.79. llvm-svn: 64523
1 parent 4ba0fad commit 8c4aa72

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/Makefile.rules

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
560560
# in the file so they get built before dependencies
561561
#---------------------------------------------------------
562562

563-
$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir):
563+
$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
564564
$(Verb) $(MKDIR) $@
565565

566566
# To create other directories, as needed, and timestamp their creation
@@ -868,7 +868,7 @@ DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
868868

869869
install-local:: $(DestSharedLib)
870870

871-
$(DestSharedLib): $(LibName.LA) | $(PROJ_libdir)
871+
$(DestSharedLib): $(LibName.LA) $(PROJ_libdir)
872872
$(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
873873
$(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
874874
$(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
@@ -935,7 +935,7 @@ uninstall-local::
935935
else
936936
install-local:: $(DestBytecodeLib)
937937

938-
$(DestBytecodeLib): $(LibName.BCA) | $(BytecodeDestDir)
938+
$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
939939
$(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
940940
$(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
941941

@@ -982,7 +982,7 @@ DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
982982

983983
install-local:: $(DestRelinkedLib)
984984

985-
$(DestRelinkedLib): $(LibName.O) | $(PROJ_libdir)
985+
$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
986986
$(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
987987
$(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
988988

@@ -1022,7 +1022,7 @@ DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
10221022

10231023
install-local:: $(DestArchiveLib)
10241024

1025-
$(DestArchiveLib): $(LibName.A) | $(PROJ_libdir)
1025+
$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
10261026
$(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
10271027
$(Verb) $(MKDIR) $(PROJ_libdir)
10281028
$(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
@@ -1084,7 +1084,7 @@ DestTool = $(PROJ_bindir)/$(TOOLNAME)
10841084

10851085
install-local:: $(DestTool)
10861086

1087-
$(DestTool): $(ToolBuildPath) | $(PROJ_bindir)
1087+
$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
10881088
$(Echo) Installing $(BuildMode) $(DestTool)
10891089
$(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
10901090

0 commit comments

Comments
 (0)