Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
cpp-libs
Actor Framework
Commits
f84fe1f5
Commit
f84fe1f5
authored
May 20, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced $() syntax with `` in configure script
parent
6762de28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
configure
configure
+7
-6
No files found.
configure
View file @
f84fe1f5
...
...
@@ -12,7 +12,8 @@ use this configure script to access CMake equivalent functionality.\
}
command
=
"
$0
$*
"
sourcedir
=
"
$(
cd
"
$(
dirname
"
$0
"
)
"
&&
pwd
)
"
dirname_0
=
`
dirname
$0
`
sourcedir
=
`
cd
$dirname_0
&&
pwd
`
usage
=
"
\
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -100,7 +101,7 @@ configure ()
;;
*
)
# relative path given; convert to absolute path
absolute_builddir
=
"
$
(
pwd
)
/
$builddir
"
absolute_builddir
=
"
$
PWD
/
$builddir
"
;;
esac
...
...
@@ -199,7 +200,7 @@ while [ $# -ne 0 ]; do
append_cache_entry MORE_CLANG_WARNINGS BOOL
true
;;
--with-cppa-log-level
=
*
)
level
=
$(
echo
"
$optarg
"
|
tr
'[:lower:]'
'[:upper:]'
)
level
=
`
echo
"
$optarg
"
|
tr
'[:lower:]'
'[:upper:]'
`
case
$level
in
ERROR
)
append_cache_entry CPPA_LOG_LEVEL STRING 0
...
...
@@ -289,7 +290,7 @@ if [ -n "$dualbuild" ]; then
fi
for
i
in
gcc clang
;
do
compiler
=
"
$(
eval echo
\$
$i
)
"
compiler
=
`
eval echo
\$
$i
`
configure
$compiler
$i
""
""
$CMakeGenerator
done
else
...
...
@@ -304,7 +305,7 @@ else
fi
printf
"DIRS := %s
\n\n
"
"
$workdirs
"
>
$sourcedir
/Makefile
makefile
=
$(
cat
<<
'
EOT
'
makefile
=
`
cat
<<
'
EOT
'
all:
@for i in
$(
DIRS
)
; do
$(
MAKE
)
-C
$$
i
$@
|| exit; done
...
...
@@ -328,6 +329,6 @@ doc:
.PHONY: all test install uninstall clean distclean
EOT
)
`
echo
"
$makefile
"
>>
$sourcedir
/Makefile
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