diff options
author | 2018-10-20 19:39:41 +0100 | |
---|---|---|
committer | 2018-10-20 19:39:41 +0100 | |
commit | d292392962718567fc3d6931b1cd2e544b9d179e (patch) | |
tree | 2b31f0504661e1a8143565713c924ecea6b73e12 /Makefile | |
parent | wrappers/Makefile: drop unused TOPDIR variable (diff) | |
download | crossdev-d292392962718567fc3d6931b1cd2e544b9d179e.tar.gz crossdev-d292392962718567fc3d6931b1cd2e544b9d179e.tar.bz2 crossdev-d292392962718567fc3d6931b1cd2e544b9d179e.zip |
Makefile: mangle files with sed at install phase
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -4,12 +4,11 @@ include settings.mk all: - sed -i -e "s,@GENTOO_PORTAGE_EPREFIX@,$(EPREFIX),g" crossdev - $(MAKE) -C wrappers install: $(INSTALL_DIR) $(DESTDIR)/$(PREFIX)/bin/ $(INSTALL_EXEC) crossdev $(DESTDIR)/$(PREFIX)/bin/ + sed -i -e "s,@GENTOO_PORTAGE_EPREFIX@,$(EPREFIX),g" $(DESTDIR)/$(PREFIX)/bin/crossdev $(MAKE) -C wrappers install PV = $(shell test -e .git && date --date="`git log -1 --format=%ci`" +%Y%m%d) |