Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
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
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
Abuhujair Javed
Postgres FD Implementation
Commits
1c2db8c3
Commit
1c2db8c3
authored
Mar 07, 2016
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix uninstall target in tsearch Makefile
Artur Zakirov
parent
7b077af5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
src/backend/tsearch/Makefile
src/backend/tsearch/Makefile
+11
-7
No files found.
src/backend/tsearch/Makefile
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)
'
...
...
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