diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2009-06-01 12:34:36 -0400 |
---|---|---|
committer | Andy Dougherty <doughera@lafayette.edu> | 2009-06-01 12:34:36 -0400 |
commit | 4291ccc37ced038dfc84c91175fda3d5e05590c4 (patch) | |
tree | dbe597d348f7f0dafe95477549dd061a4acd9d33 /Makefile.SH | |
parent | 20f91e418dfa8bdf6cf78614bfebebc28a7613ee (diff) | |
download | perl-4291ccc37ced038dfc84c91175fda3d5e05590c4.tar.gz |
Protect against spaces in build directory name when extracting .PL files
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index e53d73c18f..c78aefc0ce 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -965,7 +965,7 @@ lib/re.pm: ext/re/re.pm $(plextract): miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p @-rm -f $@ - $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -I`pwd`/lib $@.PL + $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -I"`pwd`/lib" $@.PL x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p.PL cd x2p; $(LDLIBPTH) $(MAKE) s2p |