Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
James Lowden
OpenLDAP
Commits
e3f34e30
Commit
e3f34e30
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Rework --without-subdir to remove trailing /
parent
70151679
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build/top.mk
+3
-3
3 additions, 3 deletions
build/top.mk
configure
+602
-596
602 additions, 596 deletions
configure
configure.in
+15
-7
15 additions, 7 deletions
configure.in
with
620 additions
and
606 deletions
build/top.mk
+
3
−
3
View file @
e3f34e30
...
...
@@ -22,17 +22,17 @@ exec_prefix = @exec_prefix@
ldap_subdir
=
@ldap_subdir@
bindir
=
$(
TMPROOT
)
@bindir@
datadir
=
$(
TMPROOT
)
@datadir@
/
$(
ldap_subdir
)
datadir
=
$(
TMPROOT
)
@datadir@
$(
ldap_subdir
)
includedir
=
$(
TMPROOT
)
@includedir@
infodir
=
$(
TMPROOT
)
@infodir@
libdir
=
$(
TMPROOT
)
@libdir@
libexecdir
=
$(
TMPROOT
)
@libexecdir@
localstatedir
=
$(
TMPROOT
)
@localstatedir@
mandir
=
$(
TMPROOT
)
@mandir@
moduledir
=
$(
TMPROOT
)
@libexecdir@
/
$(
ldap_subdir
)
moduledir
=
$(
TMPROOT
)
@libexecdir@
$(
ldap_subdir
)
sbindir
=
$(
TMPROOT
)
@sbindir@
sharedstatedir
=
$(
TMPROOT
)
@sharedstatedir@
sysconfdir
=
$(
TMPROOT
)
@sysconfdir@
/
$(
ldap_subdir
)
sysconfdir
=
$(
TMPROOT
)
@sysconfdir@
$(
ldap_subdir
)
EXEEXT
=
@EXEEXT@
OBJEXT
=
@OBJEXT@
...
...
This diff is collapsed.
Click to expand it.
configure
+
602
−
596
View file @
e3f34e30
This diff is collapsed.
Click to expand it.
configure.in
+
15
−
7
View file @
e3f34e30
...
...
@@ -46,14 +46,22 @@ AC_PREFIX_DEFAULT(/usr/local)
top_builddir=`pwd`
AC_SUBST(top_builddir)dnl
ldap_subdir="openldap"
AC_ARG_WITH(subdir, [ --with-subdir=DIR change default subdirectory used for installs], [
if test "$withval" = "no"; then
ldap_subdir=""
elif test "$withval" != "yes"; then
ldap_subdir="/openldap"
AC_ARG_WITH(subdir,
[ --with-subdir=DIR change default subdirectory used for installs],
[case "$withval" in
no) ldap_subdir=""
;;
yes)
;;
/*|\\*)
ldap_subdir="$withval"
fi
;;
*)
ldap_subdir="/$withval"
;;
esac
])dnl
AC_SUBST(ldap_subdir)dnl
...
...
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