Cygwin - make check broken

Поиск
Список
Период
Сортировка
От Rocco Altier
Тема Cygwin - make check broken
Дата
Msg-id 6E0907A94904D94B99D7F387E08C4F5730F368@FALCON.INSIGHT
обсуждение исходный текст
Ответы Re: Cygwin - make check broken  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Cygwin - make check broken  (Reini Urban <rurban@x-ray.at>)
Список pgsql-hackers
It looks like when we changed regress/GNUmakefile to pull rules from
Makefile.shlib, cygwin got broken in the process.

The problem is that regess.dll ends up being a symlink back to itself,
because we do a:
$(NAME)$(DLSUFFIX): $(shlib)       rm -f $(NAME)$(DLSUFFIX)       $(LN_S) $(shlib) $(NAME)$(DLSUFFIX)

And from Makefile.shlib (for cygwin)
ifeq ($(PORTNAME), cygwin) shlib                 = $(NAME)$(DLSUFFIX)

Thus regress.dll gets unhappy :-(

I don't know enough about the rest of the way the cygwin port is put
together, but it seems that the other platforms all have
shlib=lib$(NAME)...
-rocco


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Ron Mayer
Дата:
Сообщение: Re: US Census database (Tiger 2004FE) - 4.4G
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Cygwin - make check broken