Skip to content

Commit e719663

Browse files
committed
makesetup: make sure a library path is passed when building modules
This is fallout from LIBPYTHON not inluding -L. anymore
1 parent 0d600ee commit e719663

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/makesetup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
274274
;;
275275
esac
276276
rule="$file: $objs"
277-
rule="$rule; $ccld $objs $libs \$(LIBPYTHON) -o $file"
277+
rule="$rule; $ccld $objs $libs \$(BLDLIBRARY) -o $file"
278278
echo "$rule" >>$rulesf
279279
done
280280
done

0 commit comments

Comments
 (0)