You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/usr/bin/install: will not overwrite just-created '/usr/share/postgresql/9.5/extension/bignum--0.8.0.sql' with './/sql/bignum--0.8.0.sql'
/usr/lib/postgresql/9.5/lib/pgxs/src/makefiles/pgxs.mk:114: recipe for
target 'install' failed
make: *** [install] Error 1
Adding some debug $(info $$DATA is [$(DATA)]) in ifeq ($(PG91),yes) I see
$DATA is [sql/bignum--0.8.0.sql sql/bignum--0.8.0.sql]
And, that's what we're setting it too
DATA = $(wildcard sql/*--*.sql) sql/$(EXTENSION)--$(EXTVERSION).sql
That causes bignum--0.8.0.sql to be copied twice to the same location which triggers this error. Can we please just nuke the 9.1 stuff: 9.1 and 8.x are no longer supported, this isn't needed nor is it worth the added complexity.
You can see this pattern here. I think you copied it wrong. In their pg91 section they only have
DATA = $(wildcard sql/*--*.sql)
The text was updated successfully, but these errors were encountered:
EvanCarroll
added a commit
to EvanCarroll/pg-bignum
that referenced
this issue
Dec 9, 2017
* The build system previously was broke, files were attempting to be
copied twice fouling make. See issue beargiles#2 on github.
* We didn't currently have a method of converting hex to bignum, added.
* Also fixed freeing in the event of length mismatch, believe this was a
memory leak.
This doesn't actually work for me,
By that I mean it generates the error
Adding some debug
$(info $$DATA is [$(DATA)])
inifeq ($(PG91),yes)
I seeAnd, that's what we're setting it too
That causes
bignum--0.8.0.sql
to be copied twice to the same location which triggers this error. Can we please just nuke the 9.1 stuff: 9.1 and 8.x are no longer supported, this isn't needed nor is it worth the added complexity.You can see this pattern here. I think you copied it wrong. In their pg91 section they only have
The text was updated successfully, but these errors were encountered: