diff options
-rwxr-xr-x | pkgconfigdeps.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgconfigdeps.sh b/pkgconfigdeps.sh index ebd7180..b884205 100755 --- a/pkgconfigdeps.sh +++ b/pkgconfigdeps.sh @@ -17,7 +17,6 @@ case $1 in case "${filename}" in *.pc) # Assume that this file doesn't contain useful information. - needs_pkgconfig=false pcfiles=${pcfiles}" ${filename}" ;; esac @@ -27,13 +26,8 @@ case $1 in # We have a dependency. Make a note that we need the pkgconfig # tool for this package. echo "pkgconfig($n)" "$r" "$v" - needs_pkgconfig=true done # The dependency on the pkgconfig package itself. - echo coucou - if ${needs_pkgconfig} ; then - echo pkgconfig - fi ;; -R|--requires) while read filename ; do |