mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-15 22:50:54 +00:00
introduce subslot dependency on media-video/vdr Closes: https://bugs.gentoo.org/963471 Signed-off-by: Martin Dummer <martin.dummer@gmx.net> Part-of: https://github.com/gentoo/gentoo/pull/44151 Signed-off-by: Sam James <sam@gentoo.org>
18 lines
512 B
Diff
18 lines
512 B
Diff
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -8,12 +8,12 @@
|
|
#/******************************************************************************
|
|
# * if you prefer verbose non-coloured build messages, remove the '@' here:
|
|
# *****************************************************************************/
|
|
-CC = @gcc
|
|
-CXX = @g++
|
|
+CC ?= @gcc
|
|
+CXX ?= @g++
|
|
|
|
|
|
PWD = $(shell pwd)
|
|
-PLUGIN = $(shell basename $(PWD) | cut -d- -f1)
|
|
+PLUGIN = wirbelscan
|
|
CPPSRC = $(wildcard *.cpp)
|
|
OBJS = $(CPPSRC:%.cpp=%.o)
|
|
LDFLAGS?=
|