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