Skip to content

Commit

Permalink
Use the configure CXX, etc instead of defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed Aug 6, 2015
1 parent 9e4c1b2 commit d9283a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Expand Up @@ -3,7 +3,7 @@ all: omedit
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
CMAKE=CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" cmake
CMAKE=CC="@CC@" CXX="@CXX@" CFLAGS="@CFLAGS@" CPPFLAGS="@CPPFLAGS@" cmake
CMAKE_TARGET = "Unix Makefiles"

ifeq (@APP@,)
Expand Down Expand Up @@ -39,7 +39,7 @@ configure: configure.ac common/m4/corba.m4 common/m4/omhome.m4 common/m4/qmake.m
qjson-build:
test -d qjson
mkdir -p qjson/build/include/qjson
(cd qjson/build && test -f Makefile || CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" $(CMAKE) -D CMAKE_AR:String="$(AR)" .. -G $(CMAKE_TARGET))
(cd qjson/build && test -f Makefile || CC="@CC@" CXX="@CXX@" CFLAGS="@CFLAGS@" CPPFLAGS="@CPPFLAGS@" $(CMAKE) .. -G $(CMAKE_TARGET))
test -f qjson/build/lib/libqjson$(SHREXT) || $(MAKE) -C qjson/build
test "(" ! `uname` = Darwin ")" -o "(" ! -f qjson/build/lib/libqjson$(SHREXT) ")" || install_name_tool -id @rpath/libqjson$(SHREXT) 3rdParty/qjson/build/lib/libqjson$(SHREXT)
cp -a qjson/build/lib/libqjson*$(SHREXT)* @OMBUILDDIR@/lib/@host_short@/omc/
Expand Down
2 changes: 1 addition & 1 deletion common
Submodule common updated 2 files
+14 −0 commit-msg.sh
+4 −0 m4/pre-commit.m4

0 comments on commit d9283a5

Please sign in to comment.