diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2010-10-01 15:37:15 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@hemulen.(none)> | 2010-10-01 15:37:15 +0300 |
commit | b81bacf4948abd0abda93dc994313503ef950b9c (patch) | |
tree | eb609fe74caef722792f488792ff2bc3568d2e69 /cppunit | |
parent | 4f678fedc0fa502b355dacbbbd56e48e3c5f4179 (diff) |
Pass the 'debug' and 'verbose' dmake variables to the sub-dmakes
Diffstat (limited to 'cppunit')
-rw-r--r-- | cppunit/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppunit/makefile.mk b/cppunit/makefile.mk index f50f4aadc164..7da32f74c99e 100644 --- a/cppunit/makefile.mk +++ b/cppunit/makefile.mk @@ -59,8 +59,8 @@ CONFIGURE_ACTION = $(SED) -e s:@BACKPATH@:../$(BACK_PATH): \ < ../$(BACK_PATH)$(PATH_IN_MODULE)/ooo-DllPlugInTester.mk \ > src/DllPlugInTester/ooo-DllPlugInTester.mk -BUILD_ACTION = cd src/cppunit && dmake -f ooo-cppunit_dll.mk && \ - cd ../DllPlugInTester && dmake -f ooo-DllPlugInTester.mk +BUILD_ACTION = cd src/cppunit && dmake -f ooo-cppunit_dll.mk debug=$(debug) verbose=$(verbose) && \ + cd ../DllPlugInTester && dmake -f ooo-DllPlugInTester.mk debug=$(debug) verbose=$(verbose) OUTDIR2INC = include/cppunit |