Browse Source

Don't trigger build from install target

The norm is that the install target is read only from the point of view
of the source and build directory, so avoid accidentally triggering any
build.
pull/1670/merge
Pierre Ossman 1 week ago
parent
commit
0e76dd1221
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      unix/vncserver/selinux/Makefile

+ 1
- 1
unix/vncserver/selinux/Makefile View File

@@ -23,6 +23,6 @@ clean:
rm -f *.pp *.pp.bz2
rm -rf tmp

install: vncsession.pp.bz2
install:
mkdir -p $(DESTDIR)$(DATADIR)/selinux/packages/targeted/
install vncsession.pp.bz2 $(DESTDIR)$(DATADIR)/selinux/packages/targeted/vncsession.pp.bz2

Loading…
Cancel
Save