diff options
author | millert <> | 2009-02-18 15:17:55 +0000 |
---|---|---|
committer | millert <> | 2009-02-18 15:17:55 +0000 |
commit | bdba63c074d71cdce3f75074ba79bdc7a4c0e785 (patch) | |
tree | 4d3920281f4ebbe0faf81ab936889a9b5e8d7bf2 | |
parent | 1e3e80a3d45ca4f514213a89baa593b96a28cbdd (diff) | |
download | openbsd-bdba63c074d71cdce3f75074ba79bdc7a4c0e785.tar.gz openbsd-bdba63c074d71cdce3f75074ba79bdc7a4c0e785.tar.bz2 openbsd-bdba63c074d71cdce3f75074ba79bdc7a4c0e785.zip |
Add missing CURDIR
-rw-r--r-- | src/regress/lib/libc/glob/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libc/glob/Makefile b/src/regress/lib/libc/glob/Makefile index 4a3731a970..6b93edfc38 100644 --- a/src/regress/lib/libc/glob/Makefile +++ b/src/regress/lib/libc/glob/Makefile | |||
@@ -1,10 +1,10 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2008/10/01 23:04:36 millert Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2009/02/18 15:17:55 millert Exp $ |
2 | 2 | ||
3 | PROG= globtest | 3 | PROG= globtest |
4 | 4 | ||
5 | run-regress-${PROG}: | 5 | run-regress-${PROG}: |
6 | mkdir -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u` | 6 | mkdir -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u` |
7 | touch `cat files` | 7 | touch `cat ${.CURDIR}/files` |
8 | ./${PROG} ${.CURDIR}/${PROG}.in | 8 | ./${PROG} ${.CURDIR}/${PROG}.in |
9 | 9 | ||
10 | clean: | 10 | clean: |