-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rebase; fixed libutil build; fixed libutil test; fixed libstore build.
- Loading branch information
polar
committed
Mar 23, 2024
1 parent
c152c27
commit 4697601
Showing
876 changed files
with
17,593 additions
and
3,914 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#! /usr/bin/env bash | ||
|
||
export PKG_CONFIG_PATH="/usr/lib/pkgconfig/;/lib/pkgconfig/;/usr/share/pkgconfig/" | ||
|
||
# Delete existing buildfiles | ||
#--------------------------------------------------- | ||
rm -rf build | ||
|
||
|
||
# Call meson | ||
#--------------------------------------------------- | ||
meson setup build -Dprefix="/usr" | ||
|
||
|
||
# Build nix | ||
#--------------------------------------------------- | ||
cd build | ||
ninja |
Oops, something went wrong.