~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201207201942

« back to all changes in this revision

Viewing changes to hgfsmounter/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-03-20 10:19:00 UTC
  • mfrom: (1.1.4 upstream) (2.4.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090320101900-1o604camiubq2de8
Tags: 2009.03.18-154848-2
Correcting patch system depends (Closes: #520493).

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
sbin_PROGRAMS = mount.vmhgfs
19
19
 
20
20
mount_vmhgfs_LDADD =
21
 
mount_vmhgfs_LDADD += ../lib/misc/libMisc.a
22
 
mount_vmhgfs_LDADD += ../lib/string/libString.a
23
 
mount_vmhgfs_LDADD += ../lib/panicDefault/libPanicDefault.a
24
 
mount_vmhgfs_LDADD += ../lib/panic/libPanic.a
25
 
mount_vmhgfs_LDADD += ../lib/stubs/libStubs.a
 
21
mount_vmhgfs_LDADD += ../lib/misc/libMisc.la
 
22
mount_vmhgfs_LDADD += ../lib/string/libString.la
 
23
mount_vmhgfs_LDADD += ../lib/panicDefault/libPanicDefault.la
 
24
mount_vmhgfs_LDADD += ../lib/panic/libPanic.la
 
25
mount_vmhgfs_LDADD += ../lib/stubs/libStubs.la
26
26
 
27
27
mount_vmhgfs_SOURCES =
28
28
mount_vmhgfs_SOURCES += hgfsmounter.c
30
30
 
31
31
if FREEBSD
32
32
install-exec-hook:
33
 
        $(MV) $(DESTDIR)$(sbindir)/mount.vmhgfs \
 
33
        mv $(DESTDIR)$(sbindir)/mount.vmhgfs \
34
34
                $(DESTDIR)$(sbindir)/mount_vmhgfs
35
35
if WITH_ROOT_PRIVILEGES
36
36
        chmod u+s $(DESTDIR)$(sbindir)/mount_vmhgfs
39
39
        -$(LN_S) $(DESTDIR)$(sbindir)/mount_vmhgfs \
40
40
                $(DESTDIR)/sbin/mount_vmhgfs &> /dev/null
41
41
uninstall-hook:
42
 
        -$(RM) -f $(DESTDIR)$(sbindir)/mount_vmhgfs &> /dev/null
 
42
        rm -f $(DESTDIR)$(sbindir)/mount_vmhgfs
43
43
else
44
44
install-exec-hook:
45
45
if WITH_ROOT_PRIVILEGES
49
49
        -$(LN_S) $(DESTDIR)$(sbindir)/mount.vmhgfs \
50
50
                $(DESTDIR)/sbin/mount.vmhgfs &> /dev/null
51
51
uninstall-hook:
52
 
        -$(RM) -f $(DESTDIR)/sbin/mount.vmhgfs &> /dev/null
 
52
        rm -f $(DESTDIR)/sbin/mount.vmhgfs
53
53
endif !FREEBSD