diff options
author | linimon <linimon@FreeBSD.org> | 2004-04-12 22:32:01 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-04-12 22:32:01 +0800 |
commit | 4d0068fcb8cb12a15d5ba703d0b316ca618530b5 (patch) | |
tree | 9ae4e0a2fb47a814f618deab9eb0ab82cde08563 /textproc | |
parent | 75a57951fc852dea01080e6712bf68c6d9be6e68 (diff) | |
download | freebsd-ports-gnome-4d0068fcb8cb12a15d5ba703d0b316ca618530b5.tar.gz freebsd-ports-gnome-4d0068fcb8cb12a15d5ba703d0b316ca618530b5.tar.zst freebsd-ports-gnome-4d0068fcb8cb12a15d5ba703d0b316ca618530b5.zip |
Fix subtle bug in a plist substitution rule that left an unnecessary
leading slash in certain filenames (only affected 'make package').
Prompted by: bento via kris
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/xerces-j/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/xerces-j/Makefile b/textproc/xerces-j/Makefile index 57871fc87ac3..951255dc4d8c 100644 --- a/textproc/xerces-j/Makefile +++ b/textproc/xerces-j/Makefile @@ -43,7 +43,7 @@ JARFILES+= xerces.jar xmlParserAPIs.jar resolver.jar JARFILES+= xercesSamples.jar .endif -PLIST_FILES+= ${JARFILES:S,^,${JAVAJARDIR:S,${PREFIX},,}/,} +PLIST_FILES+= ${JARFILES:S,^,${JAVAJARDIR:S,${PREFIX}/,,}/,} TOOLS_JARFILES= resolver.jar stylebook-1.0-b2.jar bin/xjavac.jar |