mirror of
https://github.com/MidnightCommander/mc
synced 2025-03-06 16:11:32 +03:00
Fix for background process kill - mig
This commit is contained in:
parent
307bcd3f71
commit
6709050408
@ -85,11 +85,11 @@ realclean: clean
|
||||
# and cleaning source links.
|
||||
distclean:
|
||||
rm -f $(srcdir)/*~ $(srcdir)/config.cache $(srcdir)/config.h
|
||||
rm -f $(srcdir)/config.log $(srcdir)/config.status
|
||||
rm -f $(srcdir)/mcfn_install
|
||||
@for I in $(alldirs); do cd $$I; $(MAKE) $@ || exit 1; cd ..; done
|
||||
rm -f $(srcdir)/Makefile $(srcdir)/Make.common
|
||||
rm -f lib/mc.ext mcfn_install vfs/extfs/ftplist vfs/extfs/zip vfs/extfs/zoo vfs/extfs/lslR vfs/extfs/lha vfs/extfs/cpio vfs/extfs/deb vfs/extfs/rar
|
||||
rm -f $(srcdir)/config.log $(srcdir)/config.status
|
||||
|
||||
distdirs:
|
||||
mkdir ../mc-$(VERSION); \
|
||||
|
@ -1,3 +1,8 @@
|
||||
1998-05-03 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* boxes.c (task_cb): Use kill, not INT, as we are catching INT in
|
||||
the program.
|
||||
|
||||
Sat May 2 14:07:05 1998 Paul Sheer <psheer@obsidian.co.za>
|
||||
|
||||
* setup.c: ALT('H') now shows a directory history - that
|
||||
|
@ -881,7 +881,7 @@ task_cb (int action, void *ignored)
|
||||
sig = SIGCONT;
|
||||
tl->state = Task_Running;
|
||||
} else if (action == B_KILL){
|
||||
sig = SIGINT;
|
||||
sig = SIGKILL;
|
||||
}
|
||||
|
||||
if (sig == SIGINT)
|
||||
|
Loading…
x
Reference in New Issue
Block a user