Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9abed7d

Browse files
committed
Fix makefile syntax.
1 parent 082c0df commit 9abed7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interfaces/libpq/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ install: all installdirs install-lib
121121
$(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
122122
$(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
123123
$(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
124-
ifneq (,$findstring($(PORTNAME), win32 cygwin))
124+
ifneq (,$(findstring $(PORTNAME), win32 cygwin))
125125
$(INSTALL_DATA) $(shlib) '$(DESTDIR)$(bindir)/$(shlib)'
126126
endif
127127

@@ -130,7 +130,7 @@ installcheck:
130130

131131
installdirs: installdirs-lib
132132
$(MKDIR_P) '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)' '$(DESTDIR)$(datadir)'
133-
ifneq (,$findstring($(PORTNAME), win32 cygwin))
133+
ifneq (,$(findstring $(PORTNAME), win32 cygwin))
134134
$(MKDIR_P) '$(DESTDIR)$(bindir)'
135135
endif
136136

@@ -140,7 +140,7 @@ uninstall: uninstall-lib
140140
rm -f '$(DESTDIR)$(includedir_internal)/libpq-int.h'
141141
rm -f '$(DESTDIR)$(includedir_internal)/pqexpbuffer.h'
142142
rm -f '$(DESTDIR)$(datadir)/pg_service.conf.sample'
143-
ifneq (,$findstring($(PORTNAME), win32 cygwin))
143+
ifneq (,$(findstring $(PORTNAME), win32 cygwin))
144144
rm -f '$(DESTDIR)$(bindir)/$(shlib)'
145145
endif
146146

0 commit comments

Comments
 (0)