View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000808 | Ecere SDK | ide | public | 2013-04-24 04:05 | 2016-04-19 05:29 |
| Reporter | redj | Assigned To | |||
| Priority | immediate | Severity | feature | Reproducibility | N/A |
| Status | new | Resolution | open | ||
| Product Version | 0.44.07 | ||||
| Target Version | 0.46 eC II | ||||
| Summary | 0000808: add some special logic to copy the project to ~/ if there is no writing permission | ||||
| Description | add some special logic to copy the project to ~/ if there is no writing permission | ||||
| Tags | No tags attached. | ||||
| Attached Files | makefile.diff (985 bytes)
diff --git a/Makefile b/Makefile
index 8c6c755..705470f 100644
--- a/Makefile
+++ b/Makefile
@@ -575,10 +575,10 @@ endif
cp -pRf share/man/man1/* $(MANDIR)/man1
mkdir -p $(SAMPLESDIR)
cp -pRf samples/* $(SAMPLESDIR)
- find $(SAMPLESDIR) -type d -exec chmod 777 {} \;
+ find $(SAMPLESDIR) -type d -exec chmod 755 {} \;
mkdir -p $(EXTRASDIR)
cp -pRf extras/* $(EXTRASDIR)
- chmod 777 $(EXTRASDIR)/audio
+ chmod 755 $(EXTRASDIR)/audio
endif
ifndef OSX_TARGET
@@ -648,10 +648,10 @@ endif
cp -pRf share/man/man1/* $(MANDIR)/man1
mkdir -p $(SAMPLESDIR)
cp -pRf samples/* $(SAMPLESDIR)
- find $(SAMPLESDIR) -type d -exec chmod 777 {} \;
+ find $(SAMPLESDIR) -type d -exec chmod 755 {} \;
mkdir -p $(EXTRASDIR)
cp $(CPFLAGS) extras/* $(EXTRASDIR)
- chmod 777 $(EXTRASDIR)/audio
+ chmod 755 $(EXTRASDIR)/audio
ifdef DEBIAN_PACKAGE
mkdir -p $(DESTDIR)$(prefix)/share/doc/libecere0
install $(INSTALL_FLAG) -m644 NEWS $(DESTDIR)$(prefix)/share/doc/libecere0/changelog
| ||||