summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasper <jasper@openbsd.org>2011-06-16 09:16:18 +0000
committerjasper <jasper@openbsd.org>2011-06-16 09:16:18 +0000
commitfb4506d427cf77dad527443d0dae32d1021c60d8 (patch)
treef66deae594b87c2a130b5fbac945d44734a17903
parentpass the dma_alloced memory rather than a pointer to its pointer. (diff)
downloadwireguard-openbsd-fb4506d427cf77dad527443d0dae32d1021c60d8.tar.xz
wireguard-openbsd-fb4506d427cf77dad527443d0dae32d1021c60d8.zip
- slightly expand test for --static. it works in my local tree but needs some more testing.
-rw-r--r--regress/usr.bin/pkg-config/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/usr.bin/pkg-config/Makefile b/regress/usr.bin/pkg-config/Makefile
index 544d1ba1478..b1340508d1a 100644
--- a/regress/usr.bin/pkg-config/Makefile
+++ b/regress/usr.bin/pkg-config/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.19 2011/06/16 08:34:59 jasper Exp $
+# $OpenBSD: Makefile,v 1.20 2011/06/16 09:16:18 jasper Exp $
REGRESS_TARGETS=cmp-vers1-1 \
cmp-vers1-2 \
@@ -311,7 +311,7 @@ static-cflags2:
static-libs1:
# Test grabbing Libs.private from this package
- @echo "-L/usr/local/lib -lc -lm" > ${WANT}
+ @echo "-L/usr/local/lib -lc -lm -ll" > ${WANT}
@PKG_CONFIG_PATH=${.CURDIR}/pcdir/ ${PKG_CONFIG} --print-errors \
--errors-to-stdout --libs --static static > ${GOT}
@diff -u ${WANT} ${GOT}
@@ -325,7 +325,7 @@ static-libs2:
static-libs3:
# Test grabbing Libs.private from Requires.private in order
- @echo "-L/usr/local/lib -L/tmp/lib -L/tmp/lib/foo -lutil -lz -lc -lm -lbaz\ quux" > ${WANT}
+ @echo "-L/usr/local/lib -L/tmp/lib -L/tmp/lib/foo -lutil -lz -lc -lm -ll -lbaz\ quux" > ${WANT}
@PKG_CONFIG_PATH=${.CURDIR}/pcdir/ ${PKG_CONFIG} --print-errors \
--errors-to-stdout --libs --static static3 > ${GOT}
@diff -u ${WANT} ${GOT}