Make the win32/makefile.mk a little safer
authorSteve Hay <SteveHay@planit.com>
Mon, 27 Nov 2006 17:39:00 +0000 (17:39 +0000)
committerSteve Hay <SteveHay@planit.com>
Mon, 27 Nov 2006 17:39:00 +0000 (17:39 +0000)
commit78d580049fe3d15caa480649bb4c35a4ad9011dd
tree44c24cd343ede7aa9f7593976af9c272d2ad8783
parent40af9b72b8ba0a37d801af99832b03b6499c4cd1
Make the win32/makefile.mk a little safer

- Add a few missing s,\,$B, substitutions. We were living dangerously
  with various unescaped backslashes not causing problems purely because
  they don't make valid ecape codes anyway, e.g. ..\perl59.dll was only
  working because \p isn't an escape code so it didn't get mapped to
  anything nasty.

- Move the $(BLINK_FLAGS) out of $(mktmp ...)'s because it could contain
  backslashes which would otherwise need escaping. (Adding in the
  escaping would be another fix but other cases don't put $(BLINK_FLAGS)
  into $(mktmp ...) files in the first place.)

p4raw-id: //depot/perl@29396
win32/makefile.mk