diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-11-06 20:47:19 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-11-06 20:47:19 +0100 |
commit | 9895925db705c65ee7bc26cd593a5a36ecb7e2a7 (patch) | |
tree | b207b2f561a77c26d7b7cbdb83bb392489845c2c /Makefile | |
parent | Merge branch 'stable' (diff) | |
parent | Use mode 0644 for non-executable files (diff) | |
download | cgit-pink-9895925db705c65ee7bc26cd593a5a36ecb7e2a7.tar.gz cgit-pink-9895925db705c65ee7bc26cd593a5a36ecb7e2a7.zip |
Merge branch 'stable'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index f79688c..2107610 100644 --- a/Makefile +++ b/Makefile @@ -114,8 +114,8 @@ test: all install: all mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) - install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css - install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png + install -m 0644 cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css + install -m 0644 cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png uninstall: rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |