Subject: Re: Packages with whitespaces in filenames
To: Loic Hoguin <essen@dev-extend.eu>
From: Dieter Baron <dillo@danbala.tuwien.ac.at>
List: tech-pkg
Date: 04/15/2007 17:44:38
In article <op.tqtzqd1ijy4pj2@taris> Loic wrote:
: I'm currently working on a package which have whitespaces in the filenames.
: I tried to add backslashes (like it is done in sysutils/xraidadmin) to my
: $(WRKSRC) variable but it didn't work.

: Therefore all the cd to build or install the package fails.
: Also, pkglint throws a warning for mine and the xraidadmin package.

: Any hint as to how I can handle spaces in the $(WRKSRC) path?

WRKSRC=${WRKDIR}/path_without_spaces

post-extract:
	mv ${WRKDIR:Q}/"path with spaces" ${WRKDIR:Q}/path_without_spaces


	   		     	  	  yours,
					  dillo