Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Postgres-Extensions/object_reference
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d191ef1
Choose a base ref
...
head repository: Postgres-Extensions/object_reference
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 259e663
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 27, 2026

  1. Fix duplicate DOCS entries when asciidoctor is present

    When asciidoctor is installed, DOCS is built by two paths:
    - Line 23: $(wildcard doc/*) picks up any committed .html files
    - Line 135: ASCIIDOC_HTML adds the generated .html targets
    
    If a .html file is committed alongside its .adoc source (as in
    doc/object_reference.html + doc/object_reference.adoc), the file appears
    in DOCS twice. This causes `install` to pass the same path to
    /usr/bin/install twice in a single invocation, which fails with:
    
      install: will not overwrite just-created '...html' with '...html'
    
    Fix by using $(filter-out) to remove any ASCIIDOC_HTML entries already
    present in DOCS before appending them, then $(sort) to deduplicate.
    This matches the approach already taken in Postgres-Extensions/pgxntool 2.x.
    claude committed May 27, 2026
    Configuration menu
    Copy the full SHA
    259e663 View commit details
    Browse the repository at this point in the history
Loading