Skip to content

Commit beeceb7

Browse files
committed
Merge branch 'pr/makefile_replace_sh' into 3.6.x
Attributes GH PR #1076: #1076
2 parents 314ec41 + a64936a commit beeceb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ install-full:
261261
cp -aL nx-X11/exports/include/* nx-X11/.build-exports/include
262262

263263
# copy libs (for libnx-x11), we want the targets of the links
264-
. replace.sh; set -x; find nx-X11/exports/lib/ -name "libNX*.so" | while read libpath; do \
264+
. ./replace.sh; set -x; find nx-X11/exports/lib/ -name "libNX*.so" | while read libpath; do \
265265
libfile=$$(basename $$libpath); \
266266
libdir=$$(dirname $$libpath); \
267267
link=$$(readlink $$libpath); \
@@ -275,7 +275,7 @@ install-full:
275275
$(INSTALL_SYMLINK) ../../libNX_X11.so.6 $(DESTDIR)$(USRLIBDIR)/libX11.so.6
276276
$(INSTALL_SYMLINK) ../../libNX_X11.so.6.3.0 $(DESTDIR)$(USRLIBDIR)/libX11.so.6.3.0
277277

278-
. replace.sh; set -x; find nx-X11/.build-exports/include/{nx*,GL} -type d | \
278+
. ./replace.sh; set -x; find nx-X11/.build-exports/include/{nx*,GL} -type d | \
279279
while read dirname; do \
280280
$(INSTALL_DIR) "$$(string_rep "$$dirname" nx-X11/.build-exports/include "$(DESTDIR)$(INCLUDEDIR)/")"; \
281281
$(INSTALL_FILE) $${dirname}/*.h \

0 commit comments

Comments
 (0)