mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-30 09:48:56 +00:00
d396236a83
Remove hard coded paths from shebangs and other references because they do not play well in nix-land. Either use /usr/bin/env to do runtime PATH based lookup or avoid absolute paths so PATH look up happens instead. Signed-off-by: Thierry Laurion <insurgo@riseup.net> Signed-off-by: Manuel Mendez <github@i.m.mmlb.dev> Signed-off-by: Thierry Laurion <insurgo@riseup.net>
14 lines
338 B
Diff
14 lines
338 B
Diff
diff --git a/src/Makefile.in b/src/Makefile.in
|
|
index 7fe4dc2..38fe174 100644
|
|
--- a/src/Makefile.in
|
|
+++ b/src/Makefile.in
|
|
@@ -75,7 +75,7 @@ RM = rm -f
|
|
RM_R = rm -rf
|
|
AR_CR = ar cr
|
|
RMDIR = rmdir
|
|
-LN = /bin/ln -sf
|
|
+LN = ln -sf
|
|
CP = cp
|
|
@SET_MAKE@
|
|
#---------------------------------------------------------------------------
|