SKIP
This commit is contained in:
parent
f5aac3d204
commit
aa6fd01f1d
4
Makefile
4
Makefile
@ -1,5 +1,5 @@
|
|||||||
# procps Makefile
|
# procps Makefile
|
||||||
# Albert Cahalan, 2002
|
# Albert Cahalan, 2002-2003
|
||||||
#
|
#
|
||||||
# Recursive make is considered harmful:
|
# Recursive make is considered harmful:
|
||||||
# http://google.com/search?q=%22recursive+make+considered+harmful%22
|
# http://google.com/search?q=%22recursive+make+considered+harmful%22
|
||||||
@ -133,7 +133,7 @@ $(BINFILES) : all
|
|||||||
$(MANFILES) : all
|
$(MANFILES) : all
|
||||||
$(install) --mode a=r $(notdir $@) $@
|
$(install) --mode a=r $(notdir $@) $@
|
||||||
|
|
||||||
install: $(filter-out $(SKIP),$(INSTALL))
|
install: $(filter-out $(SKIP) $(addprefix $(DESTDIR),$(SKIP)),$(INSTALL))
|
||||||
cd $(usr/bin) && ($(ln_f) skill snice; $(ln_f) pgrep pkill)
|
cd $(usr/bin) && ($(ln_f) skill snice; $(ln_f) pgrep pkill)
|
||||||
|
|
||||||
############ prog.c --> prog.o
|
############ prog.c --> prog.o
|
||||||
|
1
NEWS
1
NEWS
@ -1,5 +1,6 @@
|
|||||||
procps-3.1.6 --> procps-3.1.7
|
procps-3.1.6 --> procps-3.1.7
|
||||||
|
|
||||||
|
Makefile: made SKIP feature easier to use
|
||||||
watch: --help now explains -t, --no-title #182246
|
watch: --help now explains -t, --no-title #182246
|
||||||
ps: warning directs users to the FAQ
|
ps: warning directs users to the FAQ
|
||||||
top: batch mode can refresh by fractional seconds
|
top: batch mode can refresh by fractional seconds
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 1998-2002 by Albert Cahalan; all rights reserved.
|
* Copyright 1998-2003 by Albert Cahalan; all rights reserved.
|
||||||
* This file may be used subject to the terms and conditions of the
|
* This file may be used subject to the terms and conditions of the
|
||||||
* GNU Library General Public License Version 2, or any later version
|
* GNU Library General Public License Version 2, or any later version
|
||||||
* at your option, as published by the Free Software Foundation.
|
* at your option, as published by the Free Software Foundation.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 1998-2002 by Albert Cahalan; all rights resered.
|
* Copyright 1998-2003 by Albert Cahalan; all rights resered.
|
||||||
* This file may be used subject to the terms and conditions of the
|
* This file may be used subject to the terms and conditions of the
|
||||||
* GNU Library General Public License Version 2, or any later version
|
* GNU Library General Public License Version 2, or any later version
|
||||||
* at your option, as published by the Free Software Foundation.
|
* at your option, as published by the Free Software Foundation.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef PROC_SIG_H
|
#ifndef PROC_SIG_H
|
||||||
#define PROC_SIG_H
|
#define PROC_SIG_H
|
||||||
/*
|
/*
|
||||||
* Copyright 1998-2002 by Albert Cahalan; all rights resered.
|
* Copyright 1998-2003 by Albert Cahalan; all rights resered.
|
||||||
* This file may be used subject to the terms and conditions of the
|
* This file may be used subject to the terms and conditions of the
|
||||||
* GNU Library General Public License Version 2, or any later version
|
* GNU Library General Public License Version 2, or any later version
|
||||||
* at your option, as published by the Free Software Foundation.
|
* at your option, as published by the Free Software Foundation.
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
Begin4
|
Begin4
|
||||||
Title: procps
|
Title: procps
|
||||||
Version: 3.1.7
|
Version: 3.1.7
|
||||||
Entered-date: 2003-3-17
|
Entered-date: 2003-3-18
|
||||||
Description: Linux system utilities
|
Description: Linux system utilities
|
||||||
Keywords: procps /proc libproc sysctl pmap
|
Keywords: procps /proc libproc sysctl pmap
|
||||||
ps uptime tload free w top vmstat watch skill snice kill pgrep pkill
|
ps uptime tload free w top vmstat watch skill snice kill pgrep pkill
|
||||||
Author: Albert Cahalan, Michael K. Johnson, Jim Warner, etc.
|
Author: Albert Cahalan, Michael K. Johnson, Jim Warner, etc.
|
||||||
Maintained-by: various <procps-feedback@lists.sf.net>
|
Maintained-by: various <procps-feedback@lists.sf.net>
|
||||||
Primary-site: http://procps.sf.net/
|
Primary-site: http://procps.sf.net/
|
||||||
238kB procps-3.1.7.tar.gz
|
239kB procps-3.1.7.tar.gz
|
||||||
Alternate-site: http://www.debian.org/Packages/unstable/base/procps.html
|
Alternate-site: http://www.debian.org/Packages/unstable/base/procps.html
|
||||||
238kB procps-3.1.7.tar.gz
|
239kB procps-3.1.7.tar.gz
|
||||||
Copying-policy: mixed
|
Copying-policy: mixed
|
||||||
End
|
End
|
||||||
|
@ -26,7 +26,7 @@ make SKIP="/bin/kill /usr/share/man/man1/kill.1" CC="gcc $RPM_OPT_FLAGS" LDFLAGS
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make SKIP="/bin/kill /usr/share/man/man1/kill.1" DESTDIR=$RPM_BUILD_ROOT install="install -D" install
|
make SKIP="/bin/kill /usr/share/man/man1/kill.1" DESTDIR=$RPM_BUILD_ROOT ldconfig=echo install="install -D" install
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 1998-2002 by Albert Cahalan; all rights resered.
|
* Copyright 1998-2003 by Albert Cahalan; all rights resered.
|
||||||
* This file may be used subject to the terms and conditions of the
|
* This file may be used subject to the terms and conditions of the
|
||||||
* GNU Library General Public License Version 2, or any later version
|
* GNU Library General Public License Version 2, or any later version
|
||||||
* at your option, as published by the Free Software Foundation.
|
* at your option, as published by the Free Software Foundation.
|
||||||
|
@ -1136,7 +1136,7 @@ try_bsd:
|
|||||||
// about "ps -aux" suddenly changing behavior if a user "x" were
|
// about "ps -aux" suddenly changing behavior if a user "x" were
|
||||||
// added to the system.
|
// added to the system.
|
||||||
if(!(personality & PER_FORCE_BSD))
|
if(!(personality & PER_FORCE_BSD))
|
||||||
fprintf(stderr, "Warning: bad '-'? See http://procps.sf.net/faq.html\n");
|
fprintf(stderr, "Warning: bad syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html\n");
|
||||||
// Remember: contact albert@users.sf.net or procps-feedback@lists.sf.net
|
// Remember: contact albert@users.sf.net or procps-feedback@lists.sf.net
|
||||||
// if you should feel tempted. Be damn sure you understand all
|
// if you should feel tempted. Be damn sure you understand all
|
||||||
// the issues. The same goes for other stuff too, BTW. Please ask.
|
// the issues. The same goes for other stuff too, BTW. Please ask.
|
||||||
|
Loading…
Reference in New Issue
Block a user