Skip to content

Commit

Permalink
bug fix: use the actually files from the export directory when popula…
Browse files Browse the repository at this point in the history
…ting the src-uri & patch_script files

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
  • Loading branch information
RobertCNelson committed Apr 19, 2012
1 parent 1b726d9 commit b104ef6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions patch.sh
Expand Up @@ -93,8 +93,7 @@ fi

# export patches and output SRC_URI for them
for patchset in ${PATCHSET} ; do
mkdir -p ${EXPORTPATH}
for patch in $(ls -1 ${PATCHPATH}/$patchset/*.patch | sort -n) ; do
for patch in $(ls -1 ${EXPORTPATH}/$patchset/*.patch | sort -n) ; do
patch=${patch##*/}
echo " file://${patchset}/$patch \\" >> ${DIR}/src-uri.txt
echo " git am \"\${DIR}/patches/${patchset}/$patch\"" >> ${DIR}/patch_script.sh
Expand Down

0 comments on commit b104ef6

Please sign in to comment.