diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-12-21 10:21:53 -0600 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2010-12-27 20:06:57 -0200 |
commit | 85b563d5c8dcd7d78ce875411d298fa3c02a6006 (patch) | |
tree | d52a2aa1908705a7986e85059a59c3c558461349 /system/gdm | |
parent | 60b9b3b9cb72833a0c5bc8b15a5ee1687f3c53d9 (diff) | |
download | slackbuilds-85b563d5c8dcd7d78ce875411d298fa3c02a6006.tar.gz |
system/gdm: Fixed the ID-10-T error in the last commit
Thanks to Nishant Limbachia for pointing it out :-)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/gdm')
-rw-r--r-- | system/gdm/gdm.SlackBuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/system/gdm/gdm.SlackBuild b/system/gdm/gdm.SlackBuild index 2b9e633d02..6c27023580 100644 --- a/system/gdm/gdm.SlackBuild +++ b/system/gdm/gdm.SlackBuild @@ -7,18 +7,17 @@ # Assumed to be in public domain per our submission guidelines # Modified by the SlackBuilds.org project # Modified by Frank Caraballo <fecaraballo{at}gmail{dot}com> +# Maintained by Robby Workman <rworkman@slackbuilds.org> PRGNAM=gdm VERSION=${VERSION:-2.20.11} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -59,7 +58,7 @@ find . \ -exec chmod 644 {} \; # Don't automatically start ssh-agent -- this is the user's job -patch -p1 < $CWD/patches/patches/do_not_start_ssh-agent.diff +patch -p1 < $CWD/patches/do_not_start_ssh-agent.diff CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |