Change ',' to '#' in sed 's' command
[platform/upstream/rpm.git] / scripts / brp-tizen
1 #! /bin/sh
2
3 # If using normal root, avoid changing anything:
4 if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
5        exit 0
6 fi
7
8 for script in /usr/lib/rpm/brp-tizen.d/brp*; do
9   if test -x "$script"; then
10     echo "calling $script"
11     $script || exit 1
12   fi
13 done