diff options
author | Anton Lindqvist <anton@cvs.openbsd.org> | 2022-03-30 05:22:32 +0000 |
---|---|---|
committer | Anton Lindqvist <anton@cvs.openbsd.org> | 2022-03-30 05:22:32 +0000 |
commit | 47bb12a29de658379d8d82b45d951b5028439d47 (patch) | |
tree | d9c23dcc1b173bc2bed68ffbec7a35450ea3f81f /regress | |
parent | 8b0106c9fea797c6b1ce1769177d72f2036d1fe5 (diff) |
Remove double slash in path to test program.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libc/malloc/malloc_general/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/regress/lib/libc/malloc/malloc_general/Makefile b/regress/lib/libc/malloc/malloc_general/Makefile index b880c2c4ab6..b06609f6fab 100644 --- a/regress/lib/libc/malloc/malloc_general/Makefile +++ b/regress/lib/libc/malloc/malloc_general/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2021/02/12 12:03:39 otto Exp $ +# $OpenBSD: Makefile,v 1.6 2022/03/30 05:22:31 anton Exp $ REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 PROG= malloc_general @@ -9,22 +9,22 @@ t1: malloc_general MALLOC_OPTIONS=cfgju ${.OBJDIR}/malloc_general t2: malloc_general - MALLOC_OPTIONS=cfgjuC ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuC ${.OBJDIR}/malloc_general t3: malloc_general - MALLOC_OPTIONS=cfgjuJ ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuJ ${.OBJDIR}/malloc_general t4: malloc_general - MALLOC_OPTIONS=cfgjuF ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuF ${.OBJDIR}/malloc_general t5: malloc_general - MALLOC_OPTIONS=cfgjuG ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuG ${.OBJDIR}/malloc_general t6: malloc_general - MALLOC_OPTIONS=cfgjuS ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuS ${.OBJDIR}/malloc_general t7: malloc_general - MALLOC_OPTIONS=cfgjuFGJ ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuFGJ ${.OBJDIR}/malloc_general t8: malloc_general MALLOC_OPTIONS=cfgjuCJ ${.OBJDIR}/malloc_general @@ -33,7 +33,7 @@ t9: malloc_general MALLOC_OPTIONS=cfgjuCJJ ${.OBJDIR}/malloc_general t10: malloc_general - MALLOC_OPTIONS=cfgjuJS ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuJS ${.OBJDIR}/malloc_general t11: malloc_general - MALLOC_OPTIONS=cfgjuFGJJ ${.OBJDIR}//malloc_general + MALLOC_OPTIONS=cfgjuFGJJ ${.OBJDIR}/malloc_general |