diff options
author | Steve Huston <shuston@riverace.com> | 2003-01-28 20:52:22 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2003-01-28 20:52:22 +0000 |
commit | f35c5b59a88fde419196e5b706a94603820fc355 (patch) | |
tree | 4b23f22a40546f91f4d1177d7fabbaf2e3e5fec6 | |
parent | 04131d480d6053f42a999a14f0f2ccb0039f73ee (diff) | |
download | ATCD-f35c5b59a88fde419196e5b706a94603820fc355.tar.gz |
ChangeLogTag:Tue Jan 28 15:47:29 2003 Steve Huston <shuston@riverace.com>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 6 | ||||
-rw-r--r-- | include/makeinclude/platform_hpux_aCC.GNU | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index a330eb9c66a..f92658d5b29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Jan 28 15:47:29 2003 Steve Huston <shuston@riverace.com> + + * include/makeinclude/platform_hpux_aCC.GNU: For distrib builds, + changed the +h option to not specify the whole path; put the path + in the path search option (+b). + Mon Jan 27 14:28:16 2003 Heather Drury <drury_h@ociweb.com> * include/makeinclude/wrapper_macros.GNU: Remove unnecessary use diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index a330eb9c66a..f92658d5b29 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Tue Jan 28 15:47:29 2003 Steve Huston <shuston@riverace.com> + + * include/makeinclude/platform_hpux_aCC.GNU: For distrib builds, + changed the +h option to not specify the whole path; put the path + in the path search option (+b). + Mon Jan 27 14:28:16 2003 Heather Drury <drury_h@ociweb.com> * include/makeinclude/wrapper_macros.GNU: Remove unnecessary use diff --git a/include/makeinclude/platform_hpux_aCC.GNU b/include/makeinclude/platform_hpux_aCC.GNU index 44e1fd7fc61..052f42203f8 100644 --- a/include/makeinclude/platform_hpux_aCC.GNU +++ b/include/makeinclude/platform_hpux_aCC.GNU @@ -129,10 +129,10 @@ ifeq ($(word 2,$(HPVERS_WORDS)), 10) SOFLAGS += -Wl,-x -Wl,+h/usr/lib/$(@F) else ifeq ($(buildbits),32) -SOFLAGS += -Wl,-x -Wl,+h/usr/lib/$(@F) +SOFLAGS += -Wl,-x -Wl,+h$(@F) -Wl,+b/usr/lib endif ifeq ($(buildbits),64) -SOFLAGS += -Wl,-x -Wl,+h/usr/lib/pa20_64/$(@F) +SOFLAGS += -Wl,-x -Wl,+h$(@F) -Wl,+b/usr/lib/pa20_64 endif endif |