tools/Makefile.am removed this undocumented tool.

2006-12-05  Sven Neumann  <sven@gimp.org>

	* tools/Makefile.am
	* tools/rmshm: removed this undocumented tool.
This commit is contained in:
Sven Neumann 2006-12-05 21:36:39 +00:00 committed by Sven Neumann
parent 5e26322578
commit 09d0edbaa8
3 changed files with 7 additions and 18 deletions

View File

@ -1,3 +1,8 @@
2006-12-05 Sven Neumann <sven@gimp.org>
* tools/Makefile.am
* tools/rmshm: removed this undocumented tool.
2006-12-05 Simon Budig <simon@gimp.org>
* plug-ins/common/antialias.c: trivial fix for bug #382445

View File

@ -41,8 +41,8 @@ INCLUDES = \
EXTRA_DIST = \
defcheck.py \
gimp-mkenums \
gimppath2svg.py \
rmshm
gimppath2svg.py
install-exec-hook:
if DEFAULT_BINARY

View File

@ -1,16 +0,0 @@
#!/bin/sh
user=`whoami`
if test `uname` = "Linux"; then
shmids=`ipcs -m | grep $user | awk '{ print $1 }'`
IPCRM="ipcrm shm"
else
shmids=`ipcs -m | grep $user | awk '{ print $2 }'`
IPCRM="ipcrm -m"
fi
for id in $shmids; do
echo removing shared memory segment: $id
$IPCRM $id
done