diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-09-28 10:40:26 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-09-29 10:59:03 -0700 |
commit | 58ace77cc4b17d32fe0cf3904ffd57b4b1afe4b4 (patch) | |
tree | 5bab5c394b056a2c5880107fc22ab133d29d7620 | |
parent | 38a6c760656267817632874f4a3e2bcf754b438e (diff) | |
download | mc-58ace77cc4b17d32fe0cf3904ffd57b4b1afe4b4.tar.gz |
Using absolute paths looks ugly :P
-rw-r--r-- | mbld/bld.sub | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mbld/bld.sub b/mbld/bld.sub index f04fc21..6379627 100644 --- a/mbld/bld.sub +++ b/mbld/bld.sub @@ -17,10 +17,10 @@ bin mbld = # Currently, mbld doesn't add all deps transitively. # Until this gets fixed, we need to list all dependent # libraries here explicitly. - lib @/lib/sys:sys - lib @/lib/std:std - lib @/lib/bio:bio - lib @/lib/regex:regex + lib ../lib/sys:sys + lib ../lib/std:std + lib ../lib/bio:bio + lib ../lib/regex:regex ;; man = mbld.1;; |