diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-04-14 18:14:32 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-04-14 18:14:32 +0200 |
commit | 5e9fc56e0a9ec5ac615a1d02cfd9b89d82a6965d (patch) | |
tree | 79979f61cacfb89f1a5ac9f1008575fa148741d8 | |
parent | 9ed101d0e1bbeb01eb373df5c79f4843e93118bc (diff) | |
download | icestorm-5e9fc56e0a9ec5ac615a1d02cfd9b89d82a6965d.tar.gz icestorm-5e9fc56e0a9ec5ac615a1d02cfd9b89d82a6965d.tar.bz2 icestorm-5e9fc56e0a9ec5ac615a1d02cfd9b89d82a6965d.zip |
Make sure that scripts find files on final install
-rw-r--r-- | icebox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icebox/Makefile b/icebox/Makefile index 830bd4a..2897dfb 100644 --- a/icebox/Makefile +++ b/icebox/Makefile @@ -74,7 +74,7 @@ install: all sed -i 's+from icebox+from $(subst -,_,$(PROGRAM_PREFIX))icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_maps$(PY_EXE) sed -i 's+import icebox+import $(subst -,_,$(PROGRAM_PREFIX))icebox as icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_vlog$(PY_EXE) sed -i 's+from icebox+from $(subst -,_,$(PROGRAM_PREFIX))icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_vlog$(PY_EXE) - sed -i 's+/usr/local/share/icebox+$(DESTDIR)$(PREFIX)/share/$(PROGRAM_PREFIX)icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_vlog$(PY_EXE) + sed -i 's+/usr/local/share/icebox+$(PREFIX)/share/$(PROGRAM_PREFIX)icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_vlog$(PY_EXE) sed -i 's+import icebox+import $(subst -,_,$(PROGRAM_PREFIX))icebox as icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_stat$(PY_EXE) sed -i 's+from icebox+from $(subst -,_,$(PROGRAM_PREFIX))icebox+g' $(DESTDIR)$(PREFIX)/bin/$(PROGRAM_PREFIX)icebox_stat$(PY_EXE) |