diff options
| author | James Knight <james.knight@rockwellcollins.com> | 2015-10-22 15:05:50 -0400 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-22 23:42:27 +0200 |
| commit | 948e4837d32e7c708427864551090ee1935ea0ef (patch) | |
| tree | dd5b32a1ec4d6c2900a91bd2afa86e875751b949 | |
| parent | adc89c35764229248e4fd810a0d19cb3cf203eab (diff) | |
| download | buildroot-948e4837d32e7c708427864551090ee1935ea0ef.tar.gz buildroot-948e4837d32e7c708427864551090ee1935ea0ef.zip | |
feh: install in /usr
By default, feh installs into /usr/local. Adjusting the prefix to point
to a system distribution path.
Signed-off-by: James Knight <james.knight@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/feh/feh.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/feh/feh.mk b/package/feh/feh.mk index 03435dc36f..7381e25275 100644 --- a/package/feh/feh.mk +++ b/package/feh/feh.mk @@ -18,7 +18,7 @@ endef define FEH_INSTALL_TARGET_CMDS $(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) " \ - DESTDIR=$(TARGET_DIR) -C $(@D) install + PREFIX=/usr DESTDIR=$(TARGET_DIR) -C $(@D) install endef $(eval $(generic-package)) |

