Skip to content

Commit

Permalink
setup.py: Install mkksiso to /usr/bin
Browse files Browse the repository at this point in the history
root is not needed so this can move to /usr/bin instead of /usr/sbin
  • Loading branch information
bcl committed May 11, 2022
1 parent 83786dd commit f552e0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lorax.spec
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
%{_sbindir}/lorax
%{_sbindir}/mkefiboot
%{_sbindir}/livemedia-creator
%{_sbindir}/mkksiso
%{_bindir}/mkksiso
%{_bindir}/image-minimizer
%dir %{_sysconfdir}/lorax
%config(noreplace) %{_sysconfdir}/lorax/lorax.conf
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

# executable
data_files.append(("/usr/sbin", ["src/sbin/lorax", "src/sbin/mkefiboot",
"src/sbin/livemedia-creator", "src/sbin/mkksiso"]))
data_files.append(("/usr/bin", ["src/bin/image-minimizer"]))
"src/sbin/livemedia-creator"]))
data_files.append(("/usr/bin", ["src/bin/image-minimizer", "src/bin/mkksiso"]))

# get the version
sys.path.insert(0, "src")
Expand Down

0 comments on commit f552e0a

Please sign in to comment.