summaryrefslogtreecommitdiff
path: root/Makefile-decls.am
Commit message (Collapse)AuthorAgeFilesLines
* Update FSF license notices to use URL instead of addressJoseph Marrero2021-12-071-3/+1
|
* Makefile: declare ostree_boot_SCRIPTS and append valuesRicardo Salveti2019-11-061-0/+1
| | | | | | | | | ostree_boot_SCRIPTS was being set on both Makefile-boot.am and Makefile-switchroot.am, causing the first one to be replaced by the other at the final Makefile, so declare as empty and append on both places instead. Signed-off-by: Ricardo Salveti <ricardo@foundries.io>
* Add SPDX-License-Identifier to source filesMarcus Folkesson2018-01-301-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | SPDX License List is a list of (common) open source licenses that can be referred to by a “short identifier”. It has several advantages compared to the common "license header texts" usually found in source files. Some of the advantages: * It is precise; there is no ambiguity due to variations in license header text * It is language neutral * It is easy to machine process * It is concise * It is simple and can be used without much cost in interpreted environments like java Script, etc. * An SPDX license identifier is immutable. * It provides simple guidance for developers who want to make sure the license for their code is respected See http://spdx.org for further reading. Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com> Closes: #1439 Approved by: cgwalters
* build-sys: Minor makefile tweaksColin Walters2017-01-041-0/+1
| | | | | | | | | | | I'm introducing a new binary in a later patch, and it makes sense to move more things to be common into the common section. Also I noticed we were missing an inclusion of common `$(AM_LDFLAGS)`, though AFAIK this doesn't break anything right now. Closes: #636 Approved by: jlebon
* build: clean up ostree-remount if building without systemdSimon McVittie2016-11-291-0/+3
| | | | | | | | | This is necessary for "make distcheck" on Travis-CI. Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Closes: #600 Approved by: cgwalters
* ostree_bootdir: properly preprend $(prefix)Jonathan Lebon2016-08-111-1/+1
| | | | | Closes: #457 Approved by: cgwalters
* ostree_bootdir: prepend $(prefix) to pathJonathan Lebon2016-08-111-1/+1
| | | | | | | Otherwise we break local installs. Closes: #456 Approved by: cgwalters
* Move ostree-* executables to /usr/lib/ostreeGatis Paeglis2016-08-111-0/+2
| | | | | | | | | | | | | | | | | Why not to use libexecdir? Because this directory does not exist on some distros or paths between distros varies. There are several reasons why a well known path is prefered, for example when generating a kernel command line: init=${ostree}/usr/lib/ostree-boot/ostree-prepare-root In addition this saves us some typing in a console when wanting to access the "ostree" cmd line. Closes: #449 Approved by: cgwalters
* Makefile: Move to AM_DISTCHECK_CONFIGURE_FLAGSSam Spilsbury2016-05-121-1/+1
| | | | | | | | | | | | Since automake 1.11.2 it is recommended that packages use AM_DISTCHECK_CONFIGURE_FLAGS instead of DISTCHECK_CONFIGURE_FLAGS as the latter is intended to be a user variable. https://bugzilla.gnome.org/show_bug.cgi?id=766298 Closes: #293 Approved by: cgwalters
* Use git.mkColin Walters2016-04-071-2/+0
| | | | | | | It's a lot nicer than manually maintaining .gitignore in general. Closes: #235 Approved by: giuseppe
* Symlink libreaddir-rand.so into tests directorySimon McVittie2016-03-311-0/+3
| | | | | | | | | This means it can be LD_PRELOADed during build-time testing. Signed-off-by: Simon McVittie <smcv@debian.org> Closes: #232 Approved by: cgwalters
* libostree: Add initial GRUB2 supportColin Walters2014-10-161-0/+1
| | | | | | | | | | | | | | | | | | | | In this approach, we drop a /etc/grub.d/15_ostree file which is a hybrid of shell/C that picks up bits from the GRUB2 library (e.g. the block device script generation), and then calls into libostree's GRUB2 code which knows about the BLS entries. This is admittedly ugly. There exists another approach for GRUB2 to learn the BLS specification. However, the spec has a few issues: https://www.redhat.com/archives/anaconda-devel-list/2014-July/msg00002.html This approach also gives a bit more control to the admin via the naming of the 15_ostree symlink; they can easily disable it: Or reorder the ostree entries ahead of 10_linux: Also, this approach doesn't require patches for grub2, which is an issue with the pressure to backport (rpm-)OSTree to EL7.
* build: Don't use += for ACLOCAL_AMFLAGSColin Walters2014-01-111-1/+0
| | | | It confuses the autotools.
* Makefile-decls.am: Some minor fixes from hotsshColin Walters2014-01-031-1/+3
|
* build: Add Makefile-decls.amColin Walters2014-01-031-0/+49
I'll be sharing this across more of my projects.