diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-28 08:38:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-28 08:38:26 +0000 |
commit | 6bfd8e2b2044c6673371dd0302c02d62cc9a1acb (patch) | |
tree | 59796703389a5b30f8782462f25dd6d1bd14a38c /ldso/libdl | |
parent | d40e0ed3bf868164b6c3d9c139d1517fadba2d08 (diff) |
Stefan Allius noticed dlib_pic.o was not using XXFLAGS as it should
Diffstat (limited to 'ldso/libdl')
-rw-r--r-- | ldso/libdl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile index 1109d9966..1ac194400 100644 --- a/ldso/libdl/Makefile +++ b/ldso/libdl/Makefile @@ -54,7 +54,7 @@ dlib.o: dlib.c $(STRIPTOOL) -x -R .note -R .comment $*.o dlib_pic.o: dlib.c - $(CC) -I../ldso -I../ldso/$(TARGET_ARCH) $(CFLAGS) -c dlib.c -o dlib_pic.o + $(CC) -I../ldso -I../ldso/$(TARGET_ARCH) $(CFLAGS) $(XXFLAGS) -c dlib.c -o dlib_pic.o $(STRIPTOOL) -x -R .note -R .comment $*.o $(OBJ): Makefile |