Issue #2163 - copy additional httpd source to the rpm SOURCES directory

Former-commit-id: b22a36d559ba6db6d1bd3d3c6785984353449a92
This commit is contained in:
Bryan Kowal 2013-08-07 16:05:29 -05:00 committed by Steve Harris
parent c0458d512d
commit 382cb87fa3

View file

@ -209,6 +209,10 @@ function unpackHttpdPypies()
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
return 1 return 1
fi fi
cp -vf ${httpd_pypies_directory}/SOURCES/* ${AWIPSII_TOP_DIR}/SOURCES
if [ $? -ne 0 ]; then
return 1
fi
return 0 return 0
} }