2010-02-06 22:26:30 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
tmpfile=/tmp/toto42314321
|
|
|
|
|
|
|
|
cat "$1" | grep -v "CONFIG += version_detail_bash_script" > $tmpfile
|
2012-08-30 14:37:27 +00:00
|
|
|
echo "INCLUDEPATH += ../libretroshare ../retroshare-gui" > $1
|
2010-02-06 22:26:30 +00:00
|
|
|
cat $tmpfile >> $1
|
|
|
|
|