diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2010-03-22 14:46:09 +0100 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2010-03-22 14:46:09 +0100 |
commit | b61a20e4b682cd8ac4c89134c837647194a02aa8 (patch) | |
tree | dcc26eb25382d1373a34713257bd61eaad771fe8 | |
parent | 3f2507bb032908c6ad9f11c61a52229f3e33298d (diff) |
ause117: #i110262# one more chmod to make Include group writeable
-rw-r--r-- | python/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/makefile.mk b/python/makefile.mk index 93fdaa448a75..0f14194f0d8b 100644 --- a/python/makefile.mk +++ b/python/makefile.mk @@ -78,7 +78,7 @@ CONFIGURE_ACTION=$(AUGMENT_LIBRARY_PATH) ./configure --prefix=$(MYCWD)/python-in .IF "$(OS)$(CPU)" == "SOLARISI" CONFIGURE_ACTION += --disable-ipv6 .ENDIF -BUILD_ACTION=$(ENV_BUILD) $(GNUMAKE) -j$(EXTMAXPROCESS) ; $(GNUMAKE) install ; chmod -R ug+w $(MYCWD)/python-inst +BUILD_ACTION=$(ENV_BUILD) $(GNUMAKE) -j$(EXTMAXPROCESS) && $(GNUMAKE) install && chmod -R ug+w $(MYCWD)/python-inst && chmod g+w Include .ELSE # ---------------------------------- # WINDOWS @@ -93,7 +93,7 @@ python_LDFLAGS=-mno-cygwin -mthreads python_LDFLAGS+=-shared-libgcc .ENDIF CONFIGURE_ACTION=./configure --prefix=$(MYCWD)/python-inst --enable-shared CC="$(CC:s/guw.exe //)" CXX="$(CXX:s/guw.exe //)" MACHDEP=MINGW32 LN="cp -p" CFLAGS="$(python_CFLAGS)" LDFLAGS="$(python_LDFLAGS)" -BUILD_ACTION=$(ENV_BUILD) make ; make install +BUILD_ACTION=$(ENV_BUILD) make && make install .ELSE #PYTHONPATH:=..$/Lib #.EXPORT : PYTHONPATH |