Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
boot-user
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
66-service
Arch
boot-user
Commits
1a4aacdf
Commit
1a4aacdf
authored
7 months ago
by
Eric Vidal
Browse files
Options
Downloads
Patches
Plain Diff
Allow execline binairies path definition
parent
6c2450a6
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
configure
+5
-1
5 additions, 1 deletion
configure
with
5 additions
and
1 deletion
configure
+
5
−
1
View file @
1a4aacdf
...
...
@@ -17,6 +17,7 @@ Fine tuning of the installation directories:
--datarootdir=DATAROOTDIR read-only architecture-independent data root [PREFIX/share]
--with-system-service=DIR 66 service intallation directory [DATAROOTDIR/
$package_macro_dir
/service]
--with-system-seed=DIR system trees default configuration[DATAROOTDIR/
$package_macro_dir
/seed]
--execlinedir=DIR absolute path of execline binaries [BINDIR]
Fine tunning of boot-user configuration:
--DISPLAY_MANAGER=VALUE display manager to use []
...
...
@@ -91,6 +92,7 @@ bindir='$exec_prefix/bin'
datarootdir
=
'$prefix/share'
service_directory
=
'$datarootdir/$package_macro_dir/service'
seed_directory
=
'$datarootdir/$package_macro_dir/seed'
execlinedir
=
'$bindir'
DISPLAY_MANAGER
=
CONSOLE_TRACKER
=
XDG_RUNTIME
=
'!yes'
...
...
@@ -106,6 +108,7 @@ for arg ; do
--datarootdir
=
*
)
datarootdir
=
${
arg
#*=
}
;;
--with-system-service
=
*
)
service_directory
=
${
arg
#*=
}
;;
--with-system-seed
=
*
)
seed_directory
=
${
arg
#*=
}
;;
--execlinedir
=
*
)
execlinedir
=
${
arg
#*=
}
;;
--DISPLAY_MANAGER
=
*
)
DISPLAY_MANAGER
=
${
arg
#*=
}
;;
--CONSOLE_TRACKER
=
*
)
CONSOLE_TRACKER
=
${
arg
#*=
}
;;
--XDG_RUNTIME
=
*
)
XDG_RUNTIME
=
${
arg
#*=
}
;;
...
...
@@ -127,7 +130,7 @@ fi
# Expand installation directories
stripdir prefix
for
i
in
exec_prefix bindir datarootdir
\
seed_directory service_directory
;
do
seed_directory service_directory
execlinedir
;
do
eval
tmp
=
\$
{
$i
}
eval
$i
=
$tmp
stripdir
$i
...
...
@@ -186,6 +189,7 @@ datarootdir := $datarootdir
service_directory :=
$service_directory
seed_directory :=
$seed_directory
package_macro_dir :=
$package_macro_dir
execlinedir :=
$execlinedir
$DISPLAY_MANAGER
$CONSOLE_TRACKER
$XDG_RUNTIME
...
...
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