This is a discussion on pg_config --pgxs on Win32 within the pgsql Hackers forums, part of the PostgreSQL category; --> Something changed very recently in the output from pg_config --pgxs command on Win32. It now outputs double backslash everywhere ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Something changed very recently in the output from pg_config --pgxs command on Win32. It now outputs double backslash everywhere instead of forward slashes. The mingw GNU Make is not too happy about the double backslashes. I do: export PGXS := $(dir $(shell pg_config --pgxs)) and now it yields "./" I tried to do the following: $(warning "PGXS = $(dir c:\\msys\\local\\pgsql\\lib\\pgxs\\src\\MAKEFI~1\\ pgxs.mk)") $(warning "PGXS = $(dir c:/msys/local/pgsql/lib/pgxs/src/MAKEFI~1\\pgxs.mk)") The first one yields "./", the second is OK. I guess it happened when changing to using short-name represenation? Regards, Thomas Hallgren ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |
| ||||
| Thomas Hallgren <thhal@mailblocks.com> writes: > Something changed very recently in the output from pg_config --pgxs > command on Win32. It now outputs double backslash everywhere instead > of forward slashes. The mingw GNU Make is not too happy about the > double backslashes. I said that was a bad idea when it was done. I'll undo it. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |