Codebase list swi-prolog / 109af2a1-1aa9-45ee-9e2f-3bf3c7edfa79/upstream debian / swi-prolog-odbc.postrm
109af2a1-1aa9-45ee-9e2f-3bf3c7edfa79/upstream

Tree @109af2a1-1aa9-45ee-9e2f-3bf3c7edfa79/upstream (Download .tar.gz)

swi-prolog-odbc.postrm @109af2a1-1aa9-45ee-9e2f-3bf3c7edfa79/upstreamraw · history · blame

#!/bin/sh

set -e

PACKAGE=swi-prolog

# Create library index if swipl is still there
if which swipl > /dev/null;
   then
       swipl -q -g "make_library_index(swi(library))" -t halt
else
    rm -f /usr/lib/swi-prolog/library/INDEX.pl
fi

#DEBHELPER#