diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-05-25 22:53:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-05-25 22:53:06 +0100 |
commit | 4fe673f6fa5d95d02ed03a16814486b1b9ee33e2 (patch) | |
tree | 0a2d95851fd3e45e8be4745aff2d4001902e6474 /Makefile.in | |
parent | 03b79d83d0de7f010f0b76d0e6bda2406693869f (diff) |
need to escape this differently when spawning off shell
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 85d115cf529c..75f007438c5a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -27,8 +27,7 @@ dev-install: cd smoketestoo_native && \ export SAL_USE_VCLPLUGIN="svp" && \ build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && \ - cd @abs_builddir@ && ln -s $(SOLARVER)/$(INPATH)/installation/opt/ install && \ - echo "$(SOLARVER)/$(INPATH)" && \ + cd @abs_builddir@ && ln -s $$SOLARVER/$$INPATH/installation/opt/ install && \ echo "" && \ echo "Developer installation finished, you can now execute:" && \ echo "cd @abs_builddir@/install/program" && \ |