Bug 494107: added 'else' after the BUILD_SUN_PKG case so that we don't add

redundant -rpath flags in that case.  r=glen.beasley.


git-svn-id: svn://10.0.0.236/trunk@257497 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%google.com 2009-06-15 16:50:19 +00:00
parent 2c7a75fe2a
commit f9cfd9ffbc

View File

@ -57,13 +57,14 @@ EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:/opt/sun/private/lib64:$$ORIG
else
EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib:/opt/sun/private/lib'
endif
endif
else
ifeq ($(USE_64), 1)
EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:$$ORIGIN/../lib'
else
EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib'
endif
endif
endif
ifeq ($(OS_ARCH), HP-UX)
ifeq ($(OS_TEST), ia64)