You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1000 B
30 lines
1000 B
7 years ago
|
From 62c7604efdd985d7c03ab3042712c11d4ea5ca6c Mon Sep 17 00:00:00 2001
|
||
|
From: Mamoru TASAKA <mtasaka@fedoraproject.org>
|
||
|
Date: Sun, 15 Apr 2018 13:33:51 +0900
|
||
|
Subject: [PATCH] driver/Makefile.in: fix path for font-retry.o
|
||
|
|
||
|
When building source on build-time specific path, make cannot
|
||
|
find font-retry.o:
|
||
|
|
||
|
gcc: error: ../../driver/../utils/font-retry.o: No such file or directory
|
||
|
---
|
||
|
driver/Makefile.in | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/driver/Makefile.in b/driver/Makefile.in
|
||
|
index 765782d..de0faaf 100644
|
||
|
--- a/driver/Makefile.in
|
||
|
+++ b/driver/Makefile.in
|
||
|
@@ -157,7 +157,7 @@ SAVER_UTIL_SRCS = $(UTILS_SRC)/fade.c $(UTILS_SRC)/overlay.c \
|
||
|
$(DEMO_UTIL_SRCS)
|
||
|
SAVER_UTIL_OBJS = $(UTILS_BIN)/fade.o $(UTILS_BIN)/overlay.o \
|
||
|
$(UTILS_BIN)/logo.o $(UTILS_BIN)/yarandom.o \
|
||
|
- $(UTILS_BIN)/minixpm.o $(UTILS_SRC)/font-retry.o \
|
||
|
+ $(UTILS_BIN)/minixpm.o $(UTILS_BIN)/font-retry.o \
|
||
|
$(DEMO_UTIL_OBJS)
|
||
|
|
||
|
GETIMG_SRCS_1 = xscreensaver-getimage.c
|
||
|
--
|
||
|
2.17.0
|
||
|
|