summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjcwillia <jcwillia>2006-09-08 18:04:00 +0000
committerjcwillia <jcwillia>2006-09-08 18:04:00 +0000
commitfb6370dd0de18ac0bd20b89b4e86c29fef3a72ec (patch)
tree48dc6a26914120bc617753a58ba3c165b32e532b /Makefile
parent5f313edf2b304a50f4b915211d51d95554db9dc3 (diff)
updated version to 0.7.1 in both spec and mock.py; modified Makefile and specfile to reflect path change for /usr/libexec/mock.py; updated ChangeLog
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5cf4eac..d7d8bab 100644
--- a/Makefile
+++ b/Makefile
@@ -19,8 +19,8 @@ subdirs:
for d in $(SUBDIRS); do make -C $$d; [ $$? = 0 ] || exit 1 ; done
install:
- install -D -m 755 mock.py $(DESTDIR)/usr/bin/mock.py
- install -D -m 755 mock-yum $(DESTDIR)/usr/libexec/mock-yum
+ install -D mock.py $(DESTDIR)/usr/libexec/mock.py
+ install -D mock-yum $(DESTDIR)/usr/libexec/mock-yum
mkdir -p $(DESTDIR)/var/lib/mock
for d in $(SUBDIRS); do make DESTDIR=`cd $(DESTDIR); pwd` -C $$d install; [ $$? = 0 ] || exit 1; done