Skip to content

Commit

Permalink
Use freebsd style lib and bin dependency format for declaring bin/lib
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.macports.org/repository/macports/trunk/base@217 d073be05-634f-4543-b044-5fe20cf6d1d6
  • Loading branch information
landonf committed Aug 21, 2002
1 parent 27a6650 commit be58ee9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/port1.0/portutil.tcl
Expand Up @@ -90,13 +90,14 @@ proc swdep_resolve {name chain} {
if {[info exists env(DYLD_FALLBACK_LIBRARY_PATH)]} { if {[info exists env(DYLD_FALLBACK_LIBRARY_PATH)]} {
lappend search_path $env(DYLD_LIBRARY_PATH) lappend search_path $env(DYLD_LIBRARY_PATH)
} }
set depregex \^$depregex\.+\.dylib\$
} }
bin { bin {
# XXX broken
set search_path [split $env(PATH) :] set search_path [split $env(PATH) :]
set depregex \^$depregex\$
} }
default { default {
set search_path $deppath set search_path [split $deppath :]
} }
} }
} }
Expand Down

0 comments on commit be58ee9

Please sign in to comment.