diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-01-19 16:30:57 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-01-19 16:30:57 +0100 |
| commit | 5c4dc39baff46b9a9ce328b16592e0bebf12217e (patch) | |
| tree | bf26f77a767e23331a4e930648c45b60043f0570 | |
| parent | cc551cb0423a1de1e969174ad12a0b53191bab9b (diff) | |
| download | vis-5c4dc39baff46b9a9ce328b16592e0bebf12217e.tar.gz vis-5c4dc39baff46b9a9ce328b16592e0bebf12217e.tar.xz | |
build: try to fix standalone build for multilib systems
| -rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 712a35d..6023d5f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -82,7 +82,7 @@ dependency/build/libncurses-extract: dependency/sources/$(LIBNCURSES).tar.gz | d touch $@ dependency/build/libncurses-configure: dependency/build/libncurses-extract - cd $(dir $<)/$(LIBNCURSES) && ./configure --prefix=/usr $(LIBNCURSES_CONFIG) + cd $(dir $<)/$(LIBNCURSES) && ./configure --prefix=/usr --libdir=/usr/lib $(LIBNCURSES_CONFIG) touch $@ dependency/build/libncurses-build: dependency/build/libncurses-configure @@ -167,7 +167,7 @@ dependency/build/libattr-extract: dependency/sources/$(LIBATTR).tar.gz | depende touch $@ dependency/build/libattr-configure: dependency/build/libattr-extract - cd $(dir $<)/$(LIBATTR) && ./configure --prefix=/usr + cd $(dir $<)/$(LIBATTR) && ./configure --prefix=/usr --libdir=/usr/lib touch $@ dependency/build/libattr-build: dependency/build/libattr-configure |
