Skip to content

Commit

Permalink
buildsys: fix install-gaproot target for out-of-tree builds
Browse files Browse the repository at this point in the history
The file sysinfo.gap is generated, and not in the srcdir.
  • Loading branch information
fingolfin committed Apr 20, 2020
1 parent 8a13d23 commit 8490731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ install-gaproot:
@echo "Warning, 'make install-gaproot' is incomplete"
$(INSTALL) -d -m 0755 $(DESTDIR)$(datarootdir)/gap
# TODO: update paths and FLAGS in sysinfo.gap
$(INSTALL) -m 0644 $(srcdir)/sysinfo.gap $(DESTDIR)$(datarootdir)/gap
$(INSTALL) -m 0644 sysinfo.gap $(DESTDIR)$(datarootdir)/gap
# the following lines should not use `cp -r`, which is not quite portable,
# and which also may not deal with file permissions correctly
cp -r $(srcdir)/doc $(DESTDIR)$(datarootdir)/gap/ # FIXME: don't use `cp -r`
Expand Down

0 comments on commit 8490731

Please sign in to comment.