From: Eric Biggers Date: Mon, 20 May 2013 18:32:34 +0000 (-0500) Subject: Add imagex symlink on UNIX X-Git-Tag: v1.4.1~84 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=f92670dfbf287fdf14df44f5f6e642cb956b4510 Add imagex symlink on UNIX --- diff --git a/Makefile.am b/Makefile.am index 45a85af8..87f87982 100644 --- a/Makefile.am +++ b/Makefile.am @@ -155,11 +155,13 @@ endif install-exec-hook: if [ "@IMAGEX_PROGNAME@" != imagex ]; then \ cd $(DESTDIR)$(bindir) && mv -f imagex "@IMAGEX_PROGNAME@"; \ + cd $(DESTDIR)$(bindir) && ln -s "@IMAGEX_PROGNAME@" imagex; \ fi uninstall-hook: if [ "@IMAGEX_PROGNAME@" != imagex ]; then \ cd $(DESTDIR)$(bindir) && rm -f "@IMAGEX_PROGNAME@"; \ + cd $(DESTDIR)$(bindir) && rm -f imagex; \ fi dist_bin_SCRIPTS = programs/mkwinpeimg