Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
ef456bc2
Commit
ef456bc2
authored
15 years ago
by
Marcel Loose
Browse files
Options
Downloads
Patches
Plain Diff
Bug 1310: Fixed bug that was introduced in previous commit, which caused an
error when a package didn't have an include directory.
parent
f5fba611
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/makeversion
+5
-5
5 additions, 5 deletions
CMake/makeversion
with
5 additions
and
5 deletions
CMake/makeversion
+
5
−
5
View file @
ef456bc2
...
...
@@ -45,7 +45,7 @@ trap 'rm -f version.*.tmp; \
trap - 0; \
exit'
0 1 2 3 15
# Get the package name
(also in lower and uppercase)
.
# Get the package name.
fpkg
=
`
pwd
`
pkg
=
`
basename
$fpkg
`
...
...
@@ -54,7 +54,7 @@ if [ "$pkg" = Tools -o "$pkg" = pytools ]; then
exit
0
fi
#
Tak
e the package from the CMakeLists.txt file.
#
If present, us
e the package
name
from the CMakeLists.txt file.
# It looks like: project (GCFProtocols ...)
tpkg
=
`
sed
-n
's,^[ \t]*project[ \t]*([ \t]*\([^ \t)]\+\).*$,\1,ip'
CMakeLists.txt
`
if
test
"
$tpkg
"
!=
""
;
then
...
...
@@ -65,11 +65,11 @@ fi
# CMakeLists.txt. Otherwise header files are in src and <package> is the
# include path.
incdir
=
`
sed
-n
's,^[ \t]*add_subdirectory[ \t]*([ \t]*\(include/[^)]\+\).*$,\1,ip'
CMakeLists.txt
`
incpath
=
"
${
incdir
##include/
}
"
if
test
"
$incdir
"
=
""
;
then
echo
"Could not derive include directory from
$pkg
/CMakeLists.txt"
exit
1
incdir
=
src
incpath
=
$pkg
fi
incpath
=
"
${
incdir
##include/
}
"
# Check if source and include directory exist. If not, then it is probably not
# a package directory.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment