diff options
Diffstat (limited to 'system/untex/untex.SlackBuild')
-rw-r--r-- | system/untex/untex.SlackBuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/system/untex/untex.SlackBuild b/system/untex/untex.SlackBuild index 41f9297c73184..18a34b78e1117 100644 --- a/system/untex/untex.SlackBuild +++ b/system/untex/untex.SlackBuild @@ -25,6 +25,9 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220212 bkw: +# - actually update the maintainer/email in the .info file, d'oh! + # 20170626 bkw: # - take over maintenance # - fix missing includes and other compiler warnings @@ -46,9 +49,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -82,11 +82,7 @@ mkdir $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -C $PRGNAM-$VERSION cd $PRGNAM-$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +chmod 644 * # 20170626 bkw: fix most of the compiler warnings we get with -Wall. This # should help with -current's gcc7, which is quite picky. |