diff options
author | Owen Taylor <otaylor@src.gnome.org> | 2002-03-03 02:50:26 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-03-03 02:50:26 +0000 |
commit | 809a11fea0e2e7c30a6c4d09b3eea10e5b151c56 (patch) | |
tree | 30f97478caae8392c521acc4d57adea175886a10 /sanitize-la.sh | |
parent | ed5fc07f4ec71e1ab2d7e8891d1f2a3824840d7b (diff) | |
download | gdk-pixbuf-809a11fea0e2e7c30a6c4d09b3eea10e5b151c56.tar.gz |
Shell script used to strip dependencies out of .la files.
* gdk/Makefile.am gtk/Makefile.am sanitize-la.sh: Shell script
used to strip dependencies out of .la files.
Diffstat (limited to 'sanitize-la.sh')
-rwxr-xr-x | sanitize-la.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sanitize-la.sh b/sanitize-la.sh new file mode 100755 index 000000000..9bc0ba2b3 --- /dev/null +++ b/sanitize-la.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +sed "s/dependency_libs=.*/dependency_libs=''/" < $1 > $1T && mv $1T $1 |