mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
7 lines
109 B
Bash
Executable File
7 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f $1 ]; then
|
|
sed "s/dependency_libs=.*/dependency_libs=''/" < $1 > $1T && mv $1T $1
|
|
fi
|
|
|