summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbd <sbd>2011-03-12 02:59:46 +0000
committersbd <sbd>2011-03-12 02:59:46 +0000
commit07e60a220da617ccffa32fd6fc0b39a9b68890e1 (patch)
treed89c037597bb4737cfc7eeebf8eae85e1b09707a
parent33bdef0c0bdf530439c223251d6e2db1c2249a10 (diff)
downloadpkgsrc-07e60a220da617ccffa32fd6fc0b39a9b68890e1.tar.gz
Pullup ticket #3387 - requested by wiz
build fix for devel/bmake Revisions pulled up: - devel/bmake/files/make-bootstrap.sh.in 1.2 --- Module Name: pkgsrc Committed By: wiz Date: Wed Jan 26 10:13:48 UTC 2011 Modified Files: pkgsrc/devel/bmake/files: make-bootstrap.sh.in Log Message: Add missing ".o". Found by Matthieu Herrb in PR 44461.
-rw-r--r--devel/bmake/files/make-bootstrap.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/bmake/files/make-bootstrap.sh.in b/devel/bmake/files/make-bootstrap.sh.in
index 64cb9e4d308..9e63185ee6a 100644
--- a/devel/bmake/files/make-bootstrap.sh.in
+++ b/devel/bmake/files/make-bootstrap.sh.in
@@ -45,7 +45,7 @@ do_link() {
${CC} ${LDFLAGS} -o "$output" "$@" ${LIBS}
}
-BASE_OBJECTS="arch.o buf.o compat.o cond.o dir.o for.o getopt hash.o \
+BASE_OBJECTS="arch.o buf.o compat.o cond.o dir.o for.o getopt.o hash.o \
job.o make.o make_malloc.o parse.o sigcompat.o str.o strlist.o \
suff.o targ.o trace.o var.o util.o"