We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9135a3 commit 882b61bCopy full SHA for 882b61b
1 file changed
package-release.sh
@@ -189,6 +189,12 @@ function prepare {
189
function build_arch {
190
cd "$NVAPI_SRC_DIR"
191
192
+ if [ -z "$FAKEDLL" ]; then
193
+ DIRS="x$1"
194
+ else
195
+ DIRS="$LIBDIR"
196
+ fi
197
+
198
# remove generated files, because otherwise the existing
199
# files get into the build instead of the generated ones
200
rm -f version.h config.h
@@ -198,8 +204,8 @@ function build_arch {
204
--buildtype release \
205
--prefix "$NVLIBS_BUILD_DIR" \
206
--strip \
201
- --bindir $LIBDIR \
202
- --libdir $LIBDIR \
207
+ --bindir $DIRS \
208
+ --libdir $DIRS \
203
209
-Denable_tests=true \
210
"$NVLIBS_BUILD_DIR/build.$1"
211
0 commit comments