diff options
author | jlam <jlam@pkgsrc.org> | 2005-04-28 22:55:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-04-28 22:55:45 +0000 |
commit | 5cd5a29699d6fd4d55b44b7a6e142d1fd72dbbee (patch) | |
tree | 90b200199a0b929671ea71586a80fd2497ba55e1 /misc | |
parent | 889cc319cdb50438e886cab8dc60833b1959020d (diff) | |
download | pkgsrc-5cd5a29699d6fd4d55b44b7a6e142d1fd72dbbee.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 |