diff options
author | cognet <cognet@FreeBSD.org> | 2006-03-27 12:56:29 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2006-03-27 12:56:29 +0000 |
commit | 6911bb95871df0a83b0097c181026d671c3cc7a7 (patch) | |
tree | b76127ee2754190bf87adea9fdffc24d06b68afc /rescue | |
parent | 1fff38c590249e924ef1f8b697ffaf8aef980127 (diff) | |
download | FreeBSD-src-6911bb95871df0a83b0097c181026d671c3cc7a7.zip FreeBSD-src-6911bb95871df0a83b0097c181026d671c3cc7a7.tar.gz |
*sigh*
Move the -lbsdxml after -lgeom, so that ld doesn't get confused and pretend
he can't find the symbol from libbsdxml needed in libgeom.
This should fix the rescue build breakage.
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 7ccce9d..0feeda3 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -134,11 +134,11 @@ CRUNCH_PROGS_sbin+= ipf # crunchgen does not like C++ programs; this should be fixed someday # CRUNCH_PROGS+= devd -CRUNCH_LIBS+= -lalias -lbsdxml -lcam -lcurses -ldevstat -lipsec +CRUNCH_LIBS+= -lalias -lcam -lcurses -ldevstat -lipsec .if ${MK_IPX} != "no" CRUNCH_LIBS+= -lipx .endif -CRUNCH_LIBS+= -lgeom -lkiconv -lmd -lreadline -lsbuf -lufs -lz +CRUNCH_LIBS+= -lgeom -lbsdxml -lkiconv -lmd -lreadline -lsbuf -lufs -lz .if ${MACHINE_ARCH} == "i386" CRUNCH_PROGS_sbin+= sconfig fdisk |