Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tobias Hunger
qt-creator
Commits
fe803796
Commit
fe803796
authored
Feb 24, 2009
by
con
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes: - Move scripts and adapt
parent
c0f2f81c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
scripts/fix_makefile_header_dependencies.sh
scripts/fix_makefile_header_dependencies.sh
+0
-0
scripts/replaceVersion.sh
scripts/replaceVersion.sh
+9
-9
No files found.
fix_makefile_header_dependencies.sh
→
scripts/
fix_makefile_header_dependencies.sh
View file @
fe803796
File moved
replaceVersion.sh
→
scripts/
replaceVersion.sh
View file @
fe803796
...
...
@@ -53,7 +53,7 @@ echo
## Make script safe to call from anywhere by going home first
SCRIPT_DIR
=
`
dirname
"
${
PWD
}
/
$0
"
`
SCRIPT_DIR
=
`
dirname
"
${
PWD
}
/
$0
"
`
/..
echo
"Entering directory
\`
${
SCRIPT_DIR
}
'"
pushd
"
${
SCRIPT_DIR
}
"
&>/dev/null
||
exit
1
...
...
@@ -61,7 +61,7 @@ pushd "${SCRIPT_DIR}" &>/dev/null || exit 1
## Patch *.pluginspec
while
read
i
;
do
echo
"Patching
\`
$i
'"
TMPFILE
=
`
mktemp
`
TMPFILE
=
`
mktemp
/tmp/versionPatch.XXXXXX
`
sed
-e
's/version="'
"
${
OLD
}
"
'"/version="'
"
${
NEW
}
"
'"/'
\
-e
's/compatVersion="'
"
${
OLD
}
"
'"/compatVersion="'
"
${
NEW
}
"
'"/'
\
"
${
i
}
"
>
"
${
TMPFILE
}
"
...
...
@@ -70,7 +70,7 @@ done < <(find . -name '*.pluginspec')
## Patch coreconstants.h
TMPFILE
=
`
mktemp
`
TMPFILE
=
`
mktemp
/tmp/versionPatch.XXXXXX
`
CORE_CONSTANT_H
=
"
${
SCRIPT_DIR
}
/src/plugins/coreplugin/coreconstants.h"
echo
"Patching
\`
${
CORE_CONSTANT_H
}
'"
sed
\
...
...
@@ -82,8 +82,8 @@ mv -f "${TMPFILE}" "${CORE_CONSTANT_H}"
## Patch installer.rc
TMPFILE
=
`
mktemp
`
INSTALLER_RC
=
"
${
SCRIPT_DIR
}
/../ide/nightly_builds/installer/installer.rc"
TMPFILE
=
`
mktemp
/tmp/versionPatch.XXXXXX
`
INSTALLER_RC
=
"
${
SCRIPT_DIR
}
/../
../dev/
ide/nightly_builds/installer/installer.rc"
echo
"Patching
\`
${
INSTALLER_RC
}
'"
sed
\
-e
"s/"
${
OLD_DOT_FOUR
}
"/"
${
NEW_DOT_FOUR
}
"/"
\
...
...
@@ -94,8 +94,8 @@ mv -f "${TMPFILE}" "${INSTALLER_RC}"
## Patch Info.plist
TMPFILE
=
`
mktemp
`
INFO_PLIST
=
"
${
SCRIPT_DIR
}
/s
rc/app
/Info.plist"
TMPFILE
=
`
mktemp
/tmp/versionPatch.XXXXXX
`
INFO_PLIST
=
"
${
SCRIPT_DIR
}
/s
hare/qtcreator
/Info.plist"
echo
"Patching
\`
${
INFO_PLIST
}
'"
sed
\
-e
"s/"
${
OLD
}
"/"
${
NEW
}
"/"
\
...
...
@@ -104,7 +104,7 @@ mv -f "${TMPFILE}" "${INFO_PLIST}"
## Patch qtcreator.qdocconf
TMPFILE
=
`
mktemp
`
TMPFILE
=
`
mktemp
/tmp/versionPatch.XXXXXX
`
QDOCCONF
=
"
${
SCRIPT_DIR
}
/doc/qtcreator.qdocconf"
echo
"Patching
\`
${
QDOCCONF
}
'"
sed
\
...
...
@@ -115,7 +115,7 @@ mv -f "${TMPFILE}" "${QDOCCONF}"
## Patch qtcreator.qdoc
TMPFILE
=
`
mktemp
`
TMPFILE
=
`
mktemp
/tmp/versionPatch.XXXXXX
`
QDOC
=
"
${
SCRIPT_DIR
}
/doc/qtcreator.qdoc"
echo
"Patching
\`
${
QDOC
}
'"
sed
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment