Don't cp -L when setting up PolyGerrit tests

cp -rL is not supported on OS X. Following symlinks was unnecessary
anyway, as none of the zip inputs are symlinks to begin with.

Change-Id: Id0cdda3eadc53544a14bafd3aa53d5a8dac4dbd5
This commit is contained in:
Dave Borowitz
2015-12-04 10:49:50 -05:00
parent 27c581e923
commit a75837c6b5

View File

@@ -66,7 +66,7 @@ genrule(
cmd = ' && '.join([
'cd $TMP',
'unzip -q $(location :test_components)',
'cp -rL $SRCDIR/* .',
'cp -r $SRCDIR/* .',
'zip -r $OUT .',
]),
srcs = APP_SRCS + glob(WCT_TEST_PATTERNS),