Procházet zdrojové kódy

db_postgres: Makefile - fixed name of variable used to detect pkg-config

Daniel-Constantin Mierla před 6 roky
rodič
revize
49a34c8633
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      src/modules/db_postgres/Makefile

+ 3 - 3
src/modules/db_postgres/Makefile

@@ -10,13 +10,13 @@ NAME=db_postgres.so
 # CROSS_COMPILE=true
 
 ifeq ($(CROSS_COMPILE),)
-LIBPQL_BUILDER = $(shell \
+LIBPQ_BUILDER = $(shell \
 	if pkg-config --exists libpq; then \
 		echo 'pkg-config libpq'; \
 	fi)
 ifneq ($(LIBPQ_BUILDER),)
-	DEFS += $(shell $(LIBPQL_BUILDER) --cflags)
-	LIBS += $(shell $(LIBPQL_BUILDER) --libs)
+	DEFS += $(shell $(LIBPQ_BUILDER) --cflags)
+	LIBS += $(shell $(LIBPQ_BUILDER) --libs)
 endif
 endif