diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2006-11-07 09:36:26 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2006-11-07 09:36:26 +0000 |
commit | e13cec2560eddc0725353710ca161b9e130b2c1b (patch) | |
tree | 9c838e28779041d393c14247c87247b0a71c67d4 /Makefile.nmake | |
parent | 8f3f19975d763de647e751256c7c51cc57d40b03 (diff) | |
download | wireshark-e13cec2560eddc0725353710ca161b9e130b2c1b.tar.gz wireshark-e13cec2560eddc0725353710ca161b9e130b2c1b.tar.bz2 wireshark-e13cec2560eddc0725353710ca161b9e130b2c1b.zip |
don't copy mibs.txt files to mibs, but to snmp\mibs
svn path=/trunk/; revision=19856
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index b4afbf15f5..ca57962fe2 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -870,8 +870,9 @@ install-common-deps: xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll $(INSTALL_DIR) /d !ENDIF !IFDEF NET_SNMP_DIR - if not exist $(INSTALL_DIR)\mibs mkdir $(INSTALL_DIR)\mibs - xcopy "$(NET_SNMP_DIR)\mibs\*.txt" $(INSTALL_DIR)\mibs /d + if not exist $(INSTALL_DIR)\snmp mkdir $(INSTALL_DIR)\snmp + if not exist $(INSTALL_DIR)\snmp\mibs mkdir $(INSTALL_DIR)\snmp\mibs + xcopy "$(NET_SNMP_DIR)\mibs\*.txt" $(INSTALL_DIR)\snmp\mibs /d !ENDIF !IFDEF LUA_DIR xcopy "$(LUA_DIR)\lib\dll\lua5.1.dll" $(INSTALL_DIR) /d |