Commit 83674f22 authored by Markus Heidelberg's avatar Markus Heidelberg Committed by Peter Korsgaard
Browse files

scripts/package wizard: delete trailing whitespace and empty lines



In this script and in the .mk output. Let's avoid unnecessary whitespace
issues in new packages created with this wizard.

Signed-off-by: default avatarMarkus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 5a3642b4
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ PACKAGE_DIR=`dirname $0`/../package/${PACKAGE_NAME}

mkdir ${PACKAGE_DIR}

cat > ${PACKAGE_DIR}/${PACKAGE_NAME}.mk <<EOF
sed -e 's/ *$//g' > ${PACKAGE_DIR}/${PACKAGE_NAME}.mk <<EOF
#############################################################
#
# ${PACKAGE_NAME}
@@ -71,7 +71,6 @@ ${NAME_UPPER}_CONF_OPT = ${CONFIG_OPTIONS}
${NAME_UPPER}_DEPENDENCIES = uclibc ${EXTRA_DEPS}

\$(eval \$(call AUTOTARGETS,package,${PACKAGE_NAME}))

EOF

cat > ${PACKAGE_DIR}/Config.in <<EOF
@@ -90,4 +89,3 @@ echo
echo "You are now ready to build ${PACKAGE_NAME}"
echo "Just run make menuconfig and select your new"
echo "package, then run make."