Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
openldap
OpenLDAP
Commits
eaa023cf
Commit
eaa023cf
authored
25 years ago
by
Hallvard Furuseth
Browse files
Options
Downloads
Patches
Plain Diff
Fix SPC -> TAB at the beginning of Makefile lines
parent
6585d34a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/tools/Makefile.in
+13
-13
13 additions, 13 deletions
servers/slapd/tools/Makefile.in
with
13 additions
and
13 deletions
servers/slapd/tools/Makefile.in
+
13
−
13
View file @
eaa023cf
...
...
@@ -54,16 +54,16 @@ all-local: build-ldbm build-bdb2 build-edb2ldif build-chlog2replog
build-ldbm
:
FORCE
@
if
[
"
$(
BUILD_LDBM
)
"
=
"yes"
]
;
then
\
$(
MAKE
)
$(
MFLAGS
)
ldbm-tools
;
\
else
\
else
\
echo
"run configure with --with-ldbm to build LDBM tools"
;
\
fi
fi
build-bdb2
:
FORCE
@
if
[
"
$(
BUILD_BDB2
)
"
=
"yes"
]
;
then
\
$(
MAKE
)
$(
MFLAGS
)
bdb2-tools
;
\
else
\
else
\
echo
"run configure with --enable-bdb2 to build BDB2 tools"
;
\
fi
fi
ldbm-tools
:
$(PROGRAMS)
...
...
@@ -72,9 +72,9 @@ bdb2-tools: $(PROGRAMS2)
build-edb2ldif
:
FORCE
@
if
[
"
$(
HAVE_ISODE
)
"
=
"yes"
]
;
then
\
$(
MAKE
)
$(
MFLAGS
)
edb2ldif
;
\
else
\
else
\
echo
"run configure with --with-isode to build edb2ldif"
;
\
fi
fi
edb2ldif
:
edb2-vers.o
$(
CC
)
$(
LDFLAGS
)
-o
$@
$(
EDB2LDIFOBJS
)
edb2-vers.o
$(
LIBS
)
...
...
@@ -147,19 +147,19 @@ clean-local: FORCE
depend-local
:
FORCE
@
DEPEND
=
no
;
DEPEND_LDBM
=
;
DEPEND_BDB2
=
;
DEPEND_ISODE
=
;
\
if
[
"
$(
BUILD_LDBM
)
"
=
"yes"
]
;
then
\
DEPEND_LDBM
=
"
$(
SRCS
)
"
;
\
DEPEND_LDBM
=
"
$(
SRCS
)
"
;
\
DEPEND
=
yes
;
\
fi
;
\
fi
;
\
if
[
"
$(
BUILD_BDB2
)
"
=
"yes"
]
;
then
\
DEPEND_BDB2
=
"
$(
SRCS2
)
"
;
\
DEPEND_BDB2
=
"
$(
SRCS2
)
"
;
\
DEPEND
=
yes
;
\
fi
;
\
fi
;
\
if
[
"
$(
HAVE_ISODE
)
"
=
"yes"
]
;
then
\
DEPEND_ISODE
=
"
$(
ISODEINCLUDEFLAG
)
chlog2replog.c
$(
EDB2LDIFSRCS
)
"
;
\
DEPEND_ISODE
=
"
$(
ISODEINCLUDEFLAG
)
chlog2replog.c
$(
EDB2LDIFSRCS
)
"
;
\
DEPEND
=
yes
;
\
fi
;
\
fi
;
\
if
[
"
$$
DEPEND"
=
"yes"
]
;
then
\
$(
MKDEP
)
$(
DEFS
)
$(
DEFINES
)
$$
DEPEND_ISODE
\
$(
MKDEP
)
$(
DEFS
)
$(
DEFINES
)
$$
DEPEND_ISODE
\
$$
DEPEND_LDBM
$$
DEPEND_BDB2
;
\
else
\
echo
"slapd-tools: no dependencies to make"
;
\
...
...
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