aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2007-10-28 13:46:20 +0000
committerBill Meier <wmeier@newsguy.com>2007-10-28 13:46:20 +0000
commit488ca683adb56c224eb34c7218068a4b15447aef (patch)
treea5986f161a4ca587bcd5fc92abdc8f3e97d57e27 /Makefile.nmake
parent23ce3f94a2096a6a2fc5fa1d498e130ec7e79baa (diff)
Fix Windows build error if not using LUA; Bug #1950
svn path=/trunk/; revision=23296
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 83751d57f2..2b6183133e 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -864,11 +864,13 @@ install-common-files:
xcopy ".\colorfilters" $(INSTALL_DIR) /d
xcopy ".\dfilters" $(INSTALL_DIR) /d
xcopy ".\smi_modules" $(INSTALL_DIR) /d
+!IFDEF LUA_DIR
xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
- xcopy doc\*.html $(INSTALL_DIR) /d
+!ENDIF
+ xcopy doc\*.html $(INSTALL_DIR) /d
!IFDEF ETHEREAL_EUG_DIR
- xcopy $(ETHEREAL_EUG_DIR) $(INSTALL_DIR) /d
+ xcopy $(ETHEREAL_EUG_DIR) $(INSTALL_DIR) /d
!ENDIF
if not exist $(INSTALL_DIR)\help mkdir $(INSTALL_DIR)\help
xcopy ".\help\*.*" $(INSTALL_DIR)\help /d