diff options
author | Julien Cristau <[email protected]> | 2009-01-10 21:55:19 +0100 |
---|---|---|
committer | Julien Cristau <[email protected]> | 2009-01-10 21:55:19 +0100 |
commit | 54885ff0ad9ba39a5e165dd19858d217826fc88f (patch) | |
tree | d40bd26f984a347dc6109d90c1a5cb333ed21852 /debian/scripts | |
parent | 502fbe7cb3fc3d07ae8431787c94390f199ab64e (diff) |
Delete unused configs/debian-*, and install-source.sh script.
We've switched to using autoconf, and mesa-swx11-source is gone.
Diffstat (limited to 'debian/scripts')
-rwxr-xr-x | debian/scripts/install-source.sh | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/debian/scripts/install-source.sh b/debian/scripts/install-source.sh deleted file mode 100755 index 5b1dcfb057d..00000000000 --- a/debian/scripts/install-source.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh - -if [ -n "$1" ]; then - TOP="$1" -else - TOP=`pwd` -fi - -SOURCE_DIRS=' - include/GL/internal - src/glx/x11 - src/mesa/drivers/common - src/mesa/drivers/dri/common - src/mesa/drivers/dri/glcore - src/mesa/drivers/x11 - src/mesa/glapi - src/mesa/main - src/mesa/math - src/mesa/ppc - src/mesa/shader - src/mesa/sparc - src/mesa/swrast_setup - src/mesa/swrast - src/mesa/tnl_dd - src/mesa/tnl - src/mesa/vbo - src/mesa/x86-64 - src/mesa/x86 -' - -FILTER="-not -path '*/.svn*'" -TARGET=${TOP}/debian/tmp/usr/share/mesa-source - -( - find $SOURCE_DIRS $FILTER -name '*.[ch]'; - find include/GL $FILTER -name 'xmesa*.h'; -) | \ - while read x; do - DIRNAME=`dirname "$x"` - mkdir -p "$TARGET/$DIRNAME" - cp -lf "$x" "$TARGET/$DIRNAME" - done - -# fix permissions -find "$TARGET" -type f | xargs chmod 0644 - |