Skip to content

Commit

Permalink
Allow spaces in install dir. TT #1716
Browse files Browse the repository at this point in the history
  • Loading branch information
coke authored and Whiteknight committed Dec 1, 2010
1 parent 559ed82 commit 05ab1f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions config/gen/makefiles/root.in
Expand Up @@ -25,16 +25,16 @@ CONFIG_ARGS = @configure_args@
# Override at least PREFIX with the install location if you're going
# to be using this outside of your build area.
BUILDPREFIX =
PREFIX = @prefix@
EXEC_PREFIX = @exec_prefix@
PREFIX = "@prefix@"
EXEC_PREFIX = "@exec_prefix@"
DESTDIR =
BIN_DIR = @bindir@
LIB_DIR = @libdir@
INCLUDE_DIR = @includedir@
DATA_DIR = @datadir@
DOC_DIR = @docdir@
VERSION_DIR = @versiondir@

BIN_DIR = "@bindir@"
LIB_DIR = "@libdir@"
INCLUDE_DIR = "@includedir@"
DATA_DIR = "@datadir@"
DOC_DIR = "@docdir@"
VERSION_DIR = "@versiondir@"
SRC_DIR = "@srcdir@"

###############################################################################
#
Expand Down Expand Up @@ -2570,7 +2570,7 @@ install-dev-only: installable
--destdir=$(DESTDIR) \
--docdir=$(DOC_DIR) \
--datadir=$(DATA_DIR) \
--srcdir=@srcdir@ \
--srcdir=$(SRC_DIR) \
--versiondir=$(VERSION_DIR) \
MANIFEST MANIFEST.generated

Expand Down
4 changes: 2 additions & 2 deletions config/inter/libparrot.pm
Expand Up @@ -84,7 +84,7 @@ sub runstep {
&& $parrot_is_shared
&& $conf->data->get('rpath') )
? $conf->data->get('rpath')
. $conf->data->get('build_dir')
. '"' . $conf->data->get('build_dir') . '"'
. '/'
. $conf->data->get('blib_dir')
: ''
Expand All @@ -96,7 +96,7 @@ sub runstep {
&& $parrot_is_shared
&& $conf->data->get('rpath') )
? $conf->data->get('rpath')
. $conf->data->get('libdir')
. '"' . $conf->data->get('libdir') . '"'
: ''
);

Expand Down

0 comments on commit 05ab1f5

Please sign in to comment.