blob: c0cc5a562da8e95cf4b7b8fe5c184158e26e8115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Date: Sat, 3 Dec 2022 17:24:58 +0100
Subject: [PATCH] avoid prestripping of files
Bug: https://bugs.gentoo.org/837260
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,9 @@ endif
TARGET = trayer
$(TARGET): $(OBJ)
$(CC) $(LDFLAGS) $(OBJ) -o $@ $(LIBS)
-ifeq (,$(DEVEL))
- strip $@
-endif
+# ifeq (,$(DEVEL))
+# strip $@
+# endif
all: $(TARGET)
--
2.38.1
|