mirror of
git://slackware.nl/current.git
synced 2025-01-16 15:41:42 +01:00
7 lines
194 B
Tcsh
7 lines
194 B
Tcsh
|
#!/bin/csh
|
||
|
if ( $?PKG_CONFIG_PATH ) then
|
||
|
setenv PKG_CONFIG_PATH ${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig
|
||
|
else
|
||
|
setenv PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/usr/lib/pkgconfig
|
||
|
endif
|