summaryrefslogtreecommitdiffstats
path: root/ubuntu/lucid_automake/kdelibs/debian/prune-nonfree
blob: c6121e836581e8efb4aa0a77be3f269c461c70fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

# Removes non-free files from the source tree. Must be done before
# creating the orig.tar.gz.

TOPLEVEL="$1"

if [ "$TOPLEVEL" = "" ]; then
	echo "Please provide the toplevel directory as the argument."
	exit 1
else
	rm -f $TOPLEVEL/tdeioslave/http/kcookiejar/rfc*
fi

exit 0