Skip to content

Commit 51bfbe2

Browse files
committed
dmidecode: Add missing build dependencies on dmioutput.h
dmidecode.c and dmioem.c both include dmioutput.h so they must be rebuilt if that header file changes. Signed-off-by: Jean Delvare <[email protected]>
1 parent fd4a87b commit 51bfbe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ vpddecode : vpddecode.o vpdopt.o util.o
7878
#
7979

8080
dmidecode.o : dmidecode.c version.h types.h util.h config.h dmidecode.h \
81-
dmiopt.h dmioem.h
81+
dmiopt.h dmioem.h dmioutput.h
8282
$(CC) $(CFLAGS) -c $< -o $@
8383

8484
dmiopt.o : dmiopt.c config.h types.h util.h dmidecode.h dmiopt.h
8585
$(CC) $(CFLAGS) -c $< -o $@
8686

87-
dmioem.o : dmioem.c types.h dmidecode.h dmioem.h
87+
dmioem.o : dmioem.c types.h dmidecode.h dmioem.h dmioutput.h
8888
$(CC) $(CFLAGS) -c $< -o $@
8989

9090
dmioutput.o : dmioutput.c types.h dmioutput.h

0 commit comments

Comments
 (0)