aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-11-18 01:08:20 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-11-18 01:08:20 +0000
commitf20ad40ea9b69914b8086262fdf49a5851d2f418 (patch)
treea8978c02a24ba47feb097dc8ae76d72392e39453 /plugins/Makefile.nmake
parentf6603bc947ca3c3aa032eb7d1b0dab9c04bf4e9b (diff)
Append a path-separator to the plugins directory so xcopy doesn't get confused as to whether it's copying each plugin to a file or a directory. I.e., hopefully to avoid this situation:
Does wireshark-gtk2\plugins\1.7.1-SVN-39918 specify a file name or directory name on the target (F = file, D = directory)? svn path=/trunk/; revision=39922
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index b0fb679645..4475a680e9 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -67,7 +67,7 @@ custom :
install-plugins:
!IFDEF ENABLE_LIBWIRESHARK
cd ..
- @for %f in ( $(PLUGIN_LIST) ) do xcopy plugins\%f\*.dll $(INSTALL_DIR)\plugins\$(VERSION) /d
+ @for %f in ( $(PLUGIN_LIST) ) do xcopy plugins\%f\*.dll $(INSTALL_DIR)\plugins\$(VERSION)\ /d
cd plugins
if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake install-plugins
!ENDIF