Opened 16 years ago

Closed 16 years ago

#1984 closed defect (fixed)

backticks should not be in quotes in configure.in

Reported by: Ari Jolma Owned by: warmerdam
Priority: normal Milestone: 1.4.4
Component: ConfigBuild Version: unspecified
Severity: normal Keywords: postgres pg
Cc: Mateusz Łoskot

Description

statement like:

LIBS="-L`$PG_CONFIG --libdir` -lpq"

adds in some shells (for example in MSYS) A into LIBS, a more correct quoting would be:

LIBS=-L`$PG_CONFIG --libdir`" -lpq"

This is discussed for example in http://osdir.com/ml/gnu.mingw.msys/2006-01/msg00015.html

Change History (1)

comment:1 by warmerdam, 16 years ago

Cc: Mateusz Łoskot added
Keywords: postgres pg added
Milestone: 1.4.4
Resolution: fixed
Status: newclosed

Fixed in trunk (r12725) and 1.4 (r12726). Adding mloskot as a cc as a FYI.

Note: See TracTickets for help on using tickets.