Skip to content

Commit 0326dd7

Browse files
committed
There was an error in the gcc portion of the patch I sent you. Here is
the fix. Billy G. Allie
1 parent db28669 commit 0326dd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/makefiles/Makefile.unixware

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ifeq ($(with_gnu_ld), yes)
1212
# the contents of LD_LIBRARY_PATH if it exists.
1313
tpath1=$(shell echo $(trpath) | sed -e 's/ *-L/,-rpath,/g')
1414
ifdef LD_LIBRARY_PATH
15-
tpath2 = ,-rpath,tpath+=$(shell echo $(LD_LIBRARY_PATH) | sed -e 's/:/,-rpath,/g')
15+
tpath2 = ,-rpath,$(shell echo $(LD_LIBRARY_PATH) | sed -e 's/:/,-rpath,/g')
1616
endif
1717
rpath = -Wl,-rpath,$(libdir)$(tpath)$(tpath2)
1818
else

0 commit comments

Comments
 (0)