Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
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
Container Registry
Model registry
Operate
Environments
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
Jakob Huber
postgres-lambda-diff
Commits
1c2db8c3
Commit
1c2db8c3
authored
9 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Fix uninstall target in tsearch Makefile
Artur Zakirov
parent
7b077af5
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
src/backend/tsearch/Makefile
+11
-7
11 additions, 7 deletions
src/backend/tsearch/Makefile
with
11 additions
and
7 deletions
src/backend/tsearch/Makefile
+
11
−
7
View file @
1c2db8c3
...
...
@@ -13,11 +13,15 @@ include $(top_builddir)/src/Makefile.global
DICTDIR
=
tsearch_data
DICTFILES
=
dicts/synonym_sample.syn dicts/thesaurus_sample.ths
\
dicts/hunspell_sample.affix
\
dicts/ispell_sample.affix dicts/ispell_sample.dict
\
dicts/hunspell_sample_long.affix dicts/hunspell_sample_long.dict
\
dicts/hunspell_sample_num.affix dicts/hunspell_sample_num.dict
# List of dictionaries files
DICTFILES
=
synonym_sample.syn thesaurus_sample.ths
\
hunspell_sample.affix
\
ispell_sample.affix ispell_sample.dict
\
hunspell_sample_long.affix hunspell_sample_long.dict
\
hunspell_sample_num.affix hunspell_sample_num.dict
# Local paths to dictionaries files
DICTFILES_PATH
=
$(
addprefix dicts/,
$(
DICTFILES
))
OBJS
=
ts_locale.o ts_parse.o wparser.o wparser_def.o dict.o
\
dict_simple.o dict_synonym.o dict_thesaurus.o
\
...
...
@@ -27,8 +31,8 @@ OBJS = ts_locale.o ts_parse.o wparser.o wparser_def.o dict.o \
include
$(top_srcdir)/src/backend/common.mk
.PHONY
:
install-data
install-data
:
$(DICTFILES) installdirs
$(
INSTALL_DATA
)
$(
addprefix
$(
srcdir
)
/,
$(
DICTFILES
))
'
$(
DESTDIR
)$(
datadir
)
/
$(
DICTDIR
)
/'
install-data
:
$(DICTFILES
_PATH
) installdirs
$(
INSTALL_DATA
)
$(
addprefix
$(
srcdir
)
/,
$(
DICTFILES
_PATH
))
'
$(
DESTDIR
)$(
datadir
)
/
$(
DICTDIR
)
/'
installdirs
:
$(
MKDIR_P
)
'
$(
DESTDIR
)$(
datadir
)
'
'
$(
DESTDIR
)$(
datadir
)
/
$(
DICTDIR
)
'
...
...
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