summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-10-30 15:18:47 +0200
committerHans de Goede <hdegoede@redhat.com>2010-10-30 15:28:37 +0200
commitb8fa31efebf5c1018c6bcfe3503501827f9585d9 (patch)
tree598a6907a6720409fa14258e78f92913e863b470
parentda3ad123c1a111fa462f38a04fc8d95671e66496 (diff)
Keep timestamps when installing files
And do not strip the binaries, both changes to make spice-vdagent more packager friendly.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 416c840..31cd768 100644
--- a/Makefile
+++ b/Makefile
@@ -16,9 +16,9 @@ build: $(TARGETS)
install: build
install -d $(DESTDIR)$(sbindir)
- install -s $(TARGETS) $(DESTDIR)$(sbindir)
+ install -p -m 755 $(TARGETS) $(DESTDIR)$(sbindir)
install -d $(DESTDIR)$(udevdir)
- install -m 644 *.rules $(DESTDIR)$(udevdir)
+ install -p -m 644 *.rules $(DESTDIR)$(udevdir)
install -d $(DESTDIR)$(xdgautostartdir)
install -d $(DESTDIR)$(gdmautostartdir)
desktop-file-install --dir=$(DESTDIR)$(xdgautostartdir) \