Skip to content

Commit

Permalink
libsubid test makefile: fix a typo
Browse files Browse the repository at this point in the history
Fix a missing space after the -I path

Signed-off-by: Serge Hallyn <serge@hallyn.com>
  • Loading branch information
hallyn authored and alejandro-colomar committed Jun 28, 2024
1 parent 6e57238 commit 81b5b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/libsubid/04_nss/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BASE_TEST_DIR ?= $(shell git rev-parse --show-toplevel)
basedir := $(BASE_TEST_DIR)

test_nss: test_nss.c $(basedir)/lib/nss.c
gcc -c -I$(basedir)/lib/ -I$(basedir)-o test_nss.o test_nss.c
gcc -c -I$(basedir)/lib/ -I$(basedir) -o test_nss.o test_nss.c
gcc -o test_nss test_nss.o $(basedir)/lib/.libs/libshadow.a -ldl

libsubid_zzz.so: libsubid_zzz.c
Expand Down

0 comments on commit 81b5b26

Please sign in to comment.