diff options
author | Roy Marples <roy@marples.name> | 2008-01-11 18:33:23 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-11 18:33:23 +0000 |
commit | f0c0391088f295de03bd99c68f68fbaca0a15fef (patch) | |
tree | c554e56815e9d1fc21482d6379aa6f0d69fab0dd | |
parent | 0334b0be2e6dfa5e7c7d1f68eaa8dd482be04817 (diff) |
Remove non standard -R option.
-rw-r--r-- | mk/prog.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ include ${MK}/sys.mk # Some systems don't include /lib in their standard link path # so we should embed it if different _RPATH_SH= if test "${SHLIBDIR}" != "/usr/${LIBNAME}"; then \ - echo "-Wl,-rpath-link,${DESTDIR}${SHLIBDIR}:${DESTDIR}/usr/lib -R${SHLIBDIR}"; \ + echo "-Wl,-rpath-link,${DESTDIR}${SHLIBDIR}:${DESTDIR}/usr/lib"; \ fi _RPATH!= ${_RPATH_SH} LDFLAGS+= ${_RPATH}$(shell ${_RPATH_SH}) |