Skip to content

Commit c6cc38f

Browse files
author
constantined
authored
Define bindir, libdir and incdir after custom PREFIX was set
1 parent f5ff813 commit c6cc38f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: configure

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ die_unknown(){
5353
}
5454

5555
PREFIX="/mingw"
56-
bindir="${PREFIX}/bin"
57-
libdir="${PREFIX}/lib"
58-
incdir="${PREFIX}/include/sys"
5956
ar="ar"
6057
cc_default="gcc"
6158
ranlib="ranlib"
@@ -111,6 +108,9 @@ for opt do
111108
esac
112109
done
113110

111+
bindir="${PREFIX}/bin"
112+
libdir="${PREFIX}/lib"
113+
incdir="${PREFIX}/include/sys"
114114
ar="${cross_prefix}${ar}"
115115
cc_default="${cross_prefix}${cc_default}"
116116
ranlib="${cross_prefix}${ranlib}"

0 commit comments

Comments
 (0)