diff options
author | joerg <joerg@pkgsrc.org> | 2008-03-13 17:28:23 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-03-13 17:28:23 +0000 |
commit | 9f4a2649abd0c382b7e9b598061e98f624161629 (patch) | |
tree | c4c60f86f0a79665a9fd967d3755040782655c3b /pkgtools | |
parent | ea08cfc7ca6e4d67878e7b608f332a1a347ceb9f (diff) | |
download | pkgsrc-9f4a2649abd0c382b7e9b598061e98f624161629.tar.gz |
bootstrap-mk-files-20080310:
IRIX and Linux don't provide lorder in all cases, so just skip
the logic for the resorting before building ar(1)chives.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/bootstrap-mk-files/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/bootstrap-mk-files/files/mods/IRIX.bsd.lib.mk | 4 | ||||
-rw-r--r-- | pkgtools/bootstrap-mk-files/files/mods/Linux.bsd.lib.mk | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/bootstrap-mk-files/Makefile b/pkgtools/bootstrap-mk-files/Makefile index f2f27fe9595..1a8d79cf30a 100644 --- a/pkgtools/bootstrap-mk-files/Makefile +++ b/pkgtools/bootstrap-mk-files/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2008/02/11 15:17:52 tnn Exp $ +# $NetBSD: Makefile,v 1.10 2008/03/13 17:28:23 joerg Exp $ -DISTNAME= bootstrap-mk-files-20080211 +DISTNAME= bootstrap-mk-files-20080310 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/bootstrap-mk-files/files/mods/IRIX.bsd.lib.mk b/pkgtools/bootstrap-mk-files/files/mods/IRIX.bsd.lib.mk index 6c243f9c82f..d57ec77acb9 100644 --- a/pkgtools/bootstrap-mk-files/files/mods/IRIX.bsd.lib.mk +++ b/pkgtools/bootstrap-mk-files/files/mods/IRIX.bsd.lib.mk @@ -1,4 +1,4 @@ -# $NetBSD: IRIX.bsd.lib.mk,v 1.2 2007/08/10 13:04:13 joerg Exp $ +# $NetBSD: IRIX.bsd.lib.mk,v 1.3 2008/03/13 17:28:23 joerg Exp $ # @(#)bsd.lib.mk 8.3 (Berkeley) 4/22/94 .if !target(__initialized__) @@ -346,7 +346,7 @@ realall: ${SRCS} ${ALLOBJS:O} ${_LIBS} __archivebuild: .USE @rm -f ${.TARGET} - ${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}` + ${AR} cq ${.TARGET} ${.ALLSRC:M*o} __archiveinstall: .USE ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${LIBOWN} \ diff --git a/pkgtools/bootstrap-mk-files/files/mods/Linux.bsd.lib.mk b/pkgtools/bootstrap-mk-files/files/mods/Linux.bsd.lib.mk index 0ada1d7ecbb..bee99ea7861 100644 --- a/pkgtools/bootstrap-mk-files/files/mods/Linux.bsd.lib.mk +++ b/pkgtools/bootstrap-mk-files/files/mods/Linux.bsd.lib.mk @@ -1,4 +1,4 @@ -# $NetBSD: Linux.bsd.lib.mk,v 1.2 2007/08/10 13:04:13 joerg Exp $ +# $NetBSD: Linux.bsd.lib.mk,v 1.3 2008/03/13 17:28:23 joerg Exp $ # @(#)bsd.lib.mk 8.3 (Berkeley) 4/22/94 .if !target(__initialized__) @@ -346,7 +346,7 @@ realall: ${SRCS} ${ALLOBJS:O} ${_LIBS} __archivebuild: .USE @rm -f ${.TARGET} - ${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}` + ${AR} cq ${.TARGET} ${.ALLSRC:M*o} ${RANLIB} ${.TARGET} __archiveinstall: .USE |