diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-05-19 11:51:56 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-05-19 13:57:04 +0200 |
commit | 38d1776c794a0a5693d5233a0767c4f5d7440f19 (patch) | |
tree | 0cf3ac4a73e0c6a0f5611e4e5419328d9e715bd7 | |
parent | d133ef997d0e64e25ab7f34ff67af8ffd09e366b (diff) | |
download | samba-38d1776c794a0a5693d5233a0767c4f5d7440f19.tar.gz samba-38d1776c794a0a5693d5233a0767c4f5d7440f19.tar.bz2 samba-38d1776c794a0a5693d5233a0767c4f5d7440f19.zip |
testprogs/win32/npecho: use 'rm -f' instead of 'del' on unix
metze
-rwxr-xr-x | testprogs/win32/npecho/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testprogs/win32/npecho/GNUmakefile b/testprogs/win32/npecho/GNUmakefile index 64fb79f5cc..cc08ba74a1 100755 --- a/testprogs/win32/npecho/GNUmakefile +++ b/testprogs/win32/npecho/GNUmakefile @@ -19,5 +19,5 @@ CC = i586-mingw32msvc-gcc $(CC) $(CFLAGS) -o $@ $< $(LIBS) clean: - del *~ *.obj *.exe + rm -f *~ *.obj *.exe |