aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2006-12-22 00:38:53 +0000
committerBill Meier <wmeier@newsguy.com>2006-12-22 00:38:53 +0000
commit42d5c2906ffb803ad08d4fe1ba488141ff1c9bff (patch)
treefc91f4354afe37b34443d8a9f3c7bd0e90d2369d /Makefile.nmake
parent14cafb271f1cadf90abbb0ad9b8f202cd0aada6c (diff)
use 'rm -rf' so no error if directory already deleted (by 'clean_setup')
svn path=/trunk/; revision=20190
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 7382378345..19767133b0 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -506,7 +506,7 @@ setup: verify_tools
if not exist $(WIRESHARK_LIBS) md $(WIRESHARK_LIBS)
!IF "$(GTK2_INST_VERSION)" == "2.10"
# ran into problems probably due to stuff left in gtk dir, remove it
- rm -r $(WIRESHARK_LIBS)/gtk2
+ rm -rf $(WIRESHARK_LIBS)/gtk2
@$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
glib gtk2.10/glib-2.12.6.zip
@$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \