File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
hadoop-common-project/hadoop-common Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -417,6 +417,9 @@ Release 2.3.0 - UNRELEASED
417417 HADOOP-9016. HarFsInputStream.skip(long) must never return negative value.
418418 (Ivan A. Veselovsky via jeagles)
419419
420+ HADOOP-10088. copy-nativedistlibs.sh needs to quote snappy lib dir.
421+ (Raja Aluri via cnauroth)
422+
420423Release 2.2.1 - UNRELEASED
421424
422425 INCOMPATIBLE CHANGES
Original file line number Diff line number Diff line change 346346 cd $${LIB_DIR}
347347 $$TAR lib* | (cd $${TARGET_DIR} /; $$UNTAR)
348348 if [ "${bundle.snappy} " = "true" ] ; then
349- cd ${snappy.lib}
349+ cd " ${snappy.lib} "
350350 $$TAR *snappy* | (cd $${TARGET_DIR} /; $$UNTAR)
351351 fi
352352 fi
358358 $$TAR * | (cd $${TARGET_BIN_DIR} /; $$UNTAR)
359359 if [ "${bundle.snappy.in.bin} " = "true" ] ; then
360360 if [ "${bundle.snappy} " = "true" ] ; then
361- cd ${snappy.lib}
361+ cd " ${snappy.lib} "
362362 $$TAR *snappy* | (cd $${TARGET_BIN_DIR} /; $$UNTAR)
363363 fi
364364 fi
You can’t perform that action at this time.
0 commit comments