summaryrefslogtreecommitdiffstats
path: root/bin/rpmbuild-cwd
blob: 156e09994e0dc3cb229604b8175151670ab8fe43 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# rpmbuild-cwd:
# Run "rpmbuild", defining all RPM variables to use the current directory.
# This matches Fedora's system.
#
# Licensed under the new-BSD license (http://www.opensource.org/licenses/bsd-license.php)
# Copyright (C) 2010 Red Hat, Inc.
# Written by Colin Walters <walters@verbum.org>

exec rpmbuild --define '_sourcedir .' --define '_specdir .' --define '_builddir .' --define '_srcrpmdir .' --define '_rpmdir .' "$@"