Package: vdr-dev Version: 1.6.0-18 Severity: normal Looking at the diff between vdr in testing and sid I notice:
-export DEB_BUILD_OPTIONS="$DEB_BUILD_OPTIONS noopt nostrip"
+[ -z "$DEB_BUILD_OPTIONS" ] || export DEB_BUILD_OPTIONS="$DEB_BUILD_OPTIONS "
+export DEB_BUILD_OPTIONS="$(DEB_BUILD_OPTIONS)noopt nostrip"
The $(foo) syntax to reference a variable is a make-ism, it doesn't work
in shell, you want ${foo}.
Cheers,
Julien
signature.asc
Description: Digital signature

