fix problem with --enable-shared and CGC install

This commit is contained in:
Matthew Flatt 2013-01-25 12:00:53 -07:00 committed by Matthew Flatt
parent 6927923580
commit 3777a6d3f0
2 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,11 @@ AS_ABI_FLAG=$(ABI_FLAG)
# ABI flag for assembler. On HP/UX this is +A64 for 64 bit # ABI flag for assembler. On HP/UX this is +A64 for 64 bit
# executables. # executables.
# PLTSCHEME: these paths are ultimately used for installing libs:
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@
CC= @CC@ $(ABI_FLAG) CC= @CC@ $(ABI_FLAG)
CXX= @CXX@ $(ABI_FLAG) CXX= @CXX@ $(ABI_FLAG)
AS= @AS@ $(ABI_FLAG) AS= @AS@ $(ABI_FLAG)

View File

@ -3,6 +3,9 @@
# #
srcdir = @srcdir@ srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@
CC = @CC@ CC = @CC@
CXX = @CXX@ CXX = @CXX@