diff options
author | jlam <jlam> | 2005-04-28 22:55:45 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-04-28 22:55:45 +0000 |
commit | 3cc9714f2b9e33a7949a717373e41f38b77b34ad (patch) | |
tree | 90b200199a0b929671ea71586a80fd2497ba55e1 /misc | |
parent | b0551feca25532909cd483741166a08e813914c6 (diff) | |
download | pkgsrc-3cc9714f2b9e33a7949a717373e41f38b77b34ad.tar.gz |
Replace consecutive /'s in a path with a single /.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/XFree86-dirs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/XFree86-dirs/Makefile b/misc/XFree86-dirs/Makefile index 038d52968e1..b23b36e5e1f 100644 --- a/misc/XFree86-dirs/Makefile +++ b/misc/XFree86-dirs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2005/04/11 21:46:33 tv Exp $ +# $NetBSD: Makefile,v 1.7 2005/04/28 22:55:45 jlam Exp $ # DISTNAME= XFree86-dirs-1.1 @@ -24,7 +24,7 @@ XFREE86_ONLY_DIRS= # defined .include "dirs.mk" _SORTED!= ${ECHO} ${XFREE86_DIRS} | ${TR} -s ' \t' '\n' | ${SORT} -MAKE_DIRS+= ${_SORTED:S/^/${X11ROOT}\//} +MAKE_DIRS+= ${_SORTED:S/^/${X11ROOT}\//:C/\/\/\/*/\//g} do-install: # nothing |