[Codestriker-commits] CVS update: codestriker Makefile
Brought to you by:
sits
From: <si...@us...> - 2008-09-02 06:38:28
|
User: sits Date: 08/09/01 23:38:27 Modified: . Makefile Log: Make sure all the files in bin are executable when creating the zip/tar file. Index: Makefile =================================================================== RCS file: /cvsroot/codestriker/codestriker/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Makefile 19 Aug 2003 21:46:55 -0000 1.3 +++ Makefile 2 Sep 2008 06:38:27 -0000 1.4 @@ -28,7 +28,8 @@ build: build-docs $(RM) -fr $(BUILD_DIR) $(MKDIR) -p $(BUILD_DIR) - $(RSYNC) -Cavz bin/ $(BUILD_DIR)/bin/ + $(RSYNC) -Cavz bin/ $(BUILD_DIR)/bin/ + chmod +x $(BUILD_DIR)/bin/* $(RSYNC) -Cavz lib/ $(BUILD_DIR)/lib/ $(RSYNC) -Cavz html/ $(BUILD_DIR)/html/ $(RSYNC) -Cavz cgi-bin/ $(BUILD_DIR)/cgi-bin/ |