blob: ccb9a02da99f591b79ae0895638649c4d845cf01 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 4cf7e16fe9b773e2e7763d4b773854eefe2aa9ab Mon Sep 17 00:00:00 2001
2From: Otavio Salvador <otavio@ossystems.com.br>
3Date: Tue, 12 Jan 2016 09:59:55 -0200
4Subject: [PATCH] Stop using relative path for scsilib.c link
5Organization: O.S. Systems Software LTDA.
6
7Upstream-Status: Pending
8
9Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
10---
11 Makefile.linux | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/Makefile.linux b/Makefile.linux
15index 78333ff..e210564 100644
16--- a/Makefile.linux
17+++ b/Makefile.linux
18@@ -129,7 +129,7 @@ scsilib.c:
19 echo "Please specify OS={aix,linux,hpux,solaris,windows}"; \
20 exit 1; \
21 fi; \
22- ln -sf ../scsilib-$(OS).c scsilib.c
23+ ln -sf scsilib-$(OS).c scsilib.c
24
25 print:;
26 @$(PRINTER) $(PRINTFLAGS) $(ALL_CFILES)
27--
282.1.4
29