Skip to content

Commit c077029

Browse files
committed
Fix makefile syntax.
1 parent 8be095c commit c077029

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interfaces/libpq/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ install: all installdirs install-lib
120120
$(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
121121
$(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
122122
$(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
123-
ifneq (,$findstring($(PORTNAME), win32 cygwin))
123+
ifneq (,$(findstring $(PORTNAME), win32 cygwin))
124124
$(INSTALL_DATA) $(shlib) '$(DESTDIR)$(bindir)/$(shlib)'
125125
endif
126126

@@ -129,7 +129,7 @@ installcheck:
129129

130130
installdirs: installdirs-lib
131131
$(MKDIR_P) '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)'
132-
ifneq (,$findstring($(PORTNAME), win32 cygwin))
132+
ifneq (,$(findstring $(PORTNAME), win32 cygwin))
133133
$(MKDIR_P) '$(DESTDIR)$(bindir)'
134134
endif
135135

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

0 commit comments

Comments
 (0)