mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 23:19:00 +00:00
When dubiously reprogramming .SUFFIXES, don't screw up the order of .S
relative to .s. This fixes wrong sources being preferred after "gcc -save-temps" creates .s files from .S files.
This commit is contained in:
parent
129e169651
commit
a8e97da092
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61423
@ -59,7 +59,7 @@ STRIP?= -s
|
||||
# prefer .s to a .c, add .po, remove stuff not used in the BSD libraries
|
||||
# .So used for PIC object files
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .out .o .po .So .s .S .c .cc .cpp .cxx .m .C .f .y .l
|
||||
.SUFFIXES: .out .o .po .So .S .s .c .cc .cpp .cxx .m .C .f .y .l
|
||||
|
||||
.c.o:
|
||||
${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
Loading…
Reference in New Issue
Block a user