Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
139
Issues
139
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Compare Revisions
6fa1aa8ebafcaf11b1359741f3c4de8dc9ad7b6c...7aec5e0e0b5f2c5c61094822d1463dbbab4e44e1
Source
7aec5e0e0b5f2c5c61094822d1463dbbab4e44e1
Select Git revision
...
Target
6fa1aa8ebafcaf11b1359741f3c4de8dc9ad7b6c
Select Git revision
Compare
Commits (1)
Use $(shell ...) instead of backticks
· 7aec5e0e
Deuce
authored
Dec 19, 2020
Apparently ebuilds don't work properly with backticks.
7aec5e0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/conio/Common.gmake
src/conio/Common.gmake
+2
-2
No files found.
src/conio/Common.gmake
View file @
7aec5e0e
...
...
@@ -26,8 +26,8 @@ endif
ifneq ($(os),win32)
ifeq ($(shell pkg-config ncursesw --exists && echo YES), YES)
CIOLIB-MT_LIBS +=
`pkg-config ncursesw --libs`
CIOLIB-MT_CFLAGS +=
`pkg-config ncursesw --cflags`
CIOLIB-MT_LIBS +=
$(shell pkg-config ncursesw --libs)
CIOLIB-MT_CFLAGS +=
$(shell pkg-config ncursesw --cflags)
else
ifdef USE_SYSTEM_CURSES
CIOLIB-MT_LIBS += $(UL_PRE)curses$(UL_SUF)
...
...