diff options
author | obrien <obrien@FreeBSD.org> | 2004-04-25 20:36:44 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-04-25 20:36:44 +0000 |
commit | 8d22d067c8d1a824630241efa9da415f423d4670 (patch) | |
tree | b137ef7cfc29a6474e064de381389a8719dd9ab0 /sys/boot/i386/pxeldr | |
parent | a7c84134a695d7794304f72f605b9783a2f257d6 (diff) | |
download | FreeBSD-src-8d22d067c8d1a824630241efa9da415f423d4670.zip FreeBSD-src-8d22d067c8d1a824630241efa9da415f423d4670.tar.gz |
Use a more compact syntax for passing the "binary" options to 'ld'.
Diffstat (limited to 'sys/boot/i386/pxeldr')
-rw-r--r-- | sys/boot/i386/pxeldr/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/pxeldr/Makefile b/sys/boot/i386/pxeldr/Makefile index 2a8b57d..faa7964 100644 --- a/sys/boot/i386/pxeldr/Makefile +++ b/sys/boot/i386/pxeldr/Makefile @@ -34,7 +34,7 @@ ${BOOT}: ${LDR} ${LOADER} CLEANFILES+= ${LDR} -LDFLAGS+= -N -e start -Ttext ${ORG} -Wl,-S -Wl,--oformat -Wl,binary +LDFLAGS+= -N -e start -Ttext ${ORG} -Wl,-S,--oformat,binary CLEANFILES+= ${LOADER} |