Skip to content

fix: Makefile uses Unicode division slash instead of ASCII in system - #6

Open
andrewwhitecdw wants to merge 1 commit into
NVIDIA:mainfrom
andrewwhitecdw:sweep/bugfix-makefile-6cd765ae
Open

fix: Makefile uses Unicode division slash instead of ASCII in system#6
andrewwhitecdw wants to merge 1 commit into
NVIDIA:mainfrom
andrewwhitecdw:sweep/bugfix-makefile-6cd765ae

Conversation

@andrewwhitecdw

@andrewwhitecdw andrewwhitecdw commented Jul 26, 2026

Copy link
Copy Markdown

Problem

Makefile uses Unicode division slash instead of ASCII in system paths

Fix

Replace:

IDIR := ∕usr∕include
CXXFLAGS = -I $(IDIR) $(shell pkg-config --cflags jsoncpp)

LDIR := ∕usr∕lib
LDFLAGS= -L$(LDIR) -lnvfm -ljsoncpp

with:

IDIR := /usr/include
CXXFLAGS = -I $(IDIR) $(shell pkg-config --cflags jsoncpp)

LDIR := /usr/lib
LDFLAGS= -L$(LDIR) -lnvfm -ljsoncpp

Files changed

  • Makefile

@andrewwhitecdw
andrewwhitecdw marked this pull request as ready for review July 26, 2026 21:04
@andrewwhitecdw

Copy link
Copy Markdown
Author

Closing this sweep-generated PR: sole commit is missing a valid Signed-off-by trailer. It does not meet the sweep requirements (single signed-off commit).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant