mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
14 lines
480 B
Bash
14 lines
480 B
Bash
|
#!/bin/sh
|
||
|
# A script to increment build numbers of all the drivers.
|
||
|
# This is used when upgrading to a new major version of the X server.
|
||
|
#
|
||
|
# Any drivers that are newly added should not have a build file in
|
||
|
# here (or it should contain "1"). The usual method is to run this
|
||
|
# script and then remove the build files for any new driver versions.
|
||
|
|
||
|
for DRVSRC in ../src/driver/* ; do
|
||
|
DRVBASENAME=$(basename $DRVSRC | rev | cut -f 2- -d - | rev)
|
||
|
./increment.sh $DRVBASENAME
|
||
|
done
|
||
|
|