File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -337,13 +337,13 @@ genotelcontribcol: $(BUILDER)
337
337
338
338
# Build the Collector executable.
339
339
.PHONY : otelcontribcol
340
- otelcontribcol :
340
+ otelcontribcol : genotelcontribcol
341
341
cd ./cmd/otelcontribcol && GO111MODULE=on CGO_ENABLED=0 $(GOCMD ) build -trimpath -o ../../bin/otelcontribcol_$(GOOS ) _$(GOARCH )$(EXTENSION ) \
342
342
-tags $(GO_BUILD_TAGS ) .
343
343
344
344
# Build the Collector executable without the symbol table, debug information, and the DWARF symbol table.
345
345
.PHONY : otelcontribcollite
346
- otelcontribcollite :
346
+ otelcontribcollite : genotelcontribcol
347
347
cd ./cmd/otelcontribcol && GO111MODULE=on CGO_ENABLED=0 $(GOCMD ) build -trimpath -o ../../bin/otelcontribcol_$(GOOS ) _$(GOARCH )$(EXTENSION ) \
348
348
-tags $(GO_BUILD_TAGS ) -ldflags $(GO_BUILD_LDFLAGS ) .
349
349
@@ -353,12 +353,12 @@ genoteltestbedcol: $(BUILDER)
353
353
354
354
# Build the Collector executable, with only components used in testbed.
355
355
.PHONY : oteltestbedcol
356
- oteltestbedcol :
356
+ oteltestbedcol : genoteltestbedcol
357
357
cd ./cmd/oteltestbedcol && GO111MODULE=on CGO_ENABLED=0 $(GOCMD ) build -trimpath -o ../../bin/oteltestbedcol_$(GOOS ) _$(GOARCH )$(EXTENSION ) \
358
358
-tags $(GO_BUILD_TAGS ) .
359
359
360
360
.PHONY : oteltestbedcollite
361
- oteltestbedcollite :
361
+ oteltestbedcollite : genoteltestbedcol
362
362
cd ./cmd/oteltestbedcol && GO111MODULE=on CGO_ENABLED=0 $(GOCMD ) build -trimpath -o ../../bin/oteltestbedcol_$(GOOS ) _$(GOARCH )$(EXTENSION ) \
363
363
-tags $(GO_BUILD_TAGS ) -ldflags $(GO_BUILD_LDFLAGS ) .
364
364
You can’t perform that action at this time.
0 commit comments