Make this bootstrap hack actually work:
o Correct typo in library file name. o Comment out conditionals around the bootstrap hack. At least CLEANFILES+= needs to be set for cleandir. The conditional doesn't appear to do the right thing under the dependall target either, for some strange unknown reason. Committing this so that we get back buildability...
This commit is contained in:
parent
a45cd5c0e1
commit
b3c318d9a6
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.inc,v 1.3 2006/11/11 06:42:49 christos Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.4 2006/11/11 11:23:39 he Exp $
|
||||
|
||||
WARNS= 4
|
||||
|
||||
|
@ -11,9 +11,10 @@ DPADD+=${LIBSSP}
|
|||
|
||||
# Bootstrap hack
|
||||
|
||||
.ifmake all || dependall
|
||||
# XXX This conditional does not appear to do the right thing(!)
|
||||
# .ifmake all || dependall
|
||||
.BEGIN:
|
||||
${AR} cr libssp-nonshared.a
|
||||
CLEANFILES+= libssp-nonshared.a
|
||||
${AR} cr libssp_nonshared.a
|
||||
CLEANFILES+= libssp_nonshared.a
|
||||
LDFLAGS+=-L.
|
||||
.endif
|
||||
# .endif
|
||||
|
|
Loading…
Reference in New Issue