mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[misc] use "in-place" option when running sed
* Also remove unused "Version" entry
This commit is contained in:
parent
152201bf8f
commit
d3a0fc9b1d
3 changed files with 14 additions and 20 deletions
12
_chver.sh
12
_chver.sh
|
@ -25,22 +25,18 @@ case $MICRO in *[!0-9]*)
|
|||
exit 1
|
||||
esac
|
||||
echo "changing version to $MAJOR.$MINOR.$MICRO"
|
||||
sed -e "s/^AC_INIT(\[\([^ ]*\)\], \[[^ ]*\]\(.*\)/AC_INIT([\1], [$MAJOR.$MINOR.$MICRO]\2/" configure.ac > configure.ac~
|
||||
mv configure.ac~ configure.ac
|
||||
sed -i -e "s/^AC_INIT(\[\([^ ]*\)\], \[[^ ]*\]\(.*\)/AC_INIT([\1], [$MAJOR.$MINOR.$MICRO]\2/" configure.ac
|
||||
cat > cmd.sed <<\_EOF
|
||||
s/^[ \t]*FILEVERSION[ \t]*.*,.*,.*,\(.*\)/ FILEVERSION @@MAJOR@@,@@MINOR@@,@@MICRO@@,\1/
|
||||
s/^[ \t]*PRODUCTVERSION[ \t]*.*,.*,.*,\(.*\)/ PRODUCTVERSION @@MAJOR@@,@@MINOR@@,@@MICRO@@,\1/
|
||||
s/^\([ \t]*\)VALUE[ \t]*"FileVersion",[ \t]*".*\..*\..*\.\(.*\)"/\1VALUE "FileVersion", "@@MAJOR@@.@@MINOR@@.@@MICRO@@.\2"/
|
||||
s/^\([ \t]*\)VALUE[ \t]*"ProductVersion",[ \t]*".*\..*\..*\.\(.*\)"/\1VALUE "ProductVersion", "@@MAJOR@@.@@MINOR@@.@@MICRO@@.\2"/
|
||||
s/^\(.*\)"Rufus \(.*\)\.\(.*\)"\(.*\)/\1"Rufus @@MAJOR@@.@@MINOR@@.@@MICRO@@.\3"\4/
|
||||
s/^\(.*\)"Version \(.*\) (\(.*\)"\(.*\)/\1"Version @@MAJOR@@.@@MINOR@@.@@MICRO@@ (\3"\4/
|
||||
_EOF
|
||||
|
||||
# First run sed to substitute our variable in the sed command file
|
||||
sed -e "s/@@MAJOR@@/$MAJOR/g" -e "s/@@MINOR@@/$MINOR/g" -e "s/@@MICRO@@/$MICRO/g" cmd.sed > cmd.sed~
|
||||
mv cmd.sed~ cmd.sed
|
||||
sed -f cmd.sed src/rufus.rc > src/rufus.rc~
|
||||
sed 's/$/\r/' src/rufus.rc~ > src/rufus.rc
|
||||
rm src/rufus.rc~
|
||||
sed -i -e "s/@@MAJOR@@/$MAJOR/g" -e "s/@@MINOR@@/$MINOR/g" -e "s/@@MICRO@@/$MICRO/g" cmd.sed
|
||||
sed -i -f cmd.sed src/rufus.rc
|
||||
sed -i 's/$/\r/' src/rufus.rc
|
||||
rm cmd.sed
|
||||
source bootstrap.sh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue